Comments and bugfixes

Former-commit-id: 3683a8730ff5d068f3c1c79bb93c3636c00d48f6 [formerly fe04704b2248be7e313fa879746cacd335fed043] [formerly ebfa6675e34ee278af94af56aa8f43d4566d6f5f [formerly 5eab62e0aa566747edeebfa55a4e39d898ff8db5]]
Former-commit-id: 9ce059f75dc890570f9a992bf514c416ebf8e2f6 [formerly 02c89f89f211c95f8879cc4559efa3f4de7e8fca]
Former-commit-id: fb88da21590be01e95a963d453b6c3c880244281
This commit is contained in:
Henrique Dias
2017-07-08 11:30:22 +01:00
parent 946ce2df5a
commit e6efec5682
5 changed files with 35 additions and 24 deletions

View File

@@ -26,6 +26,7 @@ export default {
event.preventDefault()
if (this.new === '') return
// Build the path of the new file.
let uri = this.$route.path
if (this.$store.state.req.kind !== 'listing') {
uri = url.removeLastDir(uri) + '/'
@@ -34,14 +35,12 @@ export default {
uri += this.name
uri = uri.replace('//', '/')
// Create the new file.
api.post(uri)
.then(() => {
this.$router.push({ path: uri })
})
.catch(error => {
this.$store.commit('showError', error)
})
.then(() => { this.$router.push({ path: uri }) })
.catch(error => { this.$store.commit('showError', error) })
// Close the prompt.
this.$store.commit('closeHovers')
}
}