Skip to content

Commit

Permalink
fix: discard changes redirect
Browse files Browse the repository at this point in the history
  • Loading branch information
NGPixel committed Jan 1, 2019
1 parent 8c6aca6 commit aa57ea9
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions client/components/editor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
v-icon(color='blue', :left='$vuetify.breakpoint.lgAndUp') sort_by_alpha
span.white--text(v-if='$vuetify.breakpoint.lgAndUp') {{ $t('editor:page') }}
v-btn(
v-if='mode === `create` && path !== `home`'
v-if='path !== `home`'
outline
color='red'
:class='{ "is-icon": $vuetify.breakpoint.mdAndDown }'
Expand All @@ -29,9 +29,6 @@
span.white--text(v-if='$vuetify.breakpoint.lgAndUp') {{ $t('common:actions.discard') }}
v-content
component(:is='currentEditor')
v-btn(fixed, bottom, right, color='red', round, @click='exit', dark)
v-icon(left) close
span Close Editor
editor-modal-properties(v-model='dialogProps')
editor-modal-editorselect(v-model='dialogEditorSelector')
editor-modal-unsaved(v-model='dialogUnsaved', @discard='exitGo')
Expand Down Expand Up @@ -265,7 +262,11 @@ export default {
this.$store.commit(`loadingStart`, 'editor-close')
this.currentEditor = ''
_.delay(() => {
window.location.assign(`/${this.$store.get('page/path')}`)
if (this.$store.get('editor/mode') === 'create') {
window.location.assign(`/`)
} else {
window.location.assign(`/${this.$store.get('page/path')}`)
}
}, 500)
}
}
Expand Down

0 comments on commit aa57ea9

Please sign in to comment.