Unverified Commit 0f079e2d authored by Nicolas Giard's avatar Nicolas Giard Committed by GitHub

fix: editor select back button (#1098)

parent f7ddd56b
...@@ -187,7 +187,7 @@ ...@@ -187,7 +187,7 @@
v-divider.mt-3 v-divider.mt-3
v-switch( v-switch(
inset inset
label='Subresource Integrity' label='Subresource Integrity (SRI)'
color='red darken-2' color='red darken-2'
v-model='config.securitySRI' v-model='config.securitySRI'
persistent-hint persistent-hint
......
...@@ -44,9 +44,9 @@ ...@@ -44,9 +44,9 @@
v-flex(xs7) v-flex(xs7)
v-toolbar(color='blue darken-2', dark, dense, flat) v-toolbar(color='blue darken-2', dark, dense, flat)
.body-2 Pages .body-2 Pages
v-spacer //- v-spacer
v-btn(icon, tile, disabled): v-icon mdi-content-save-move-outline //- v-btn(icon, tile, disabled): v-icon mdi-content-save-move-outline
v-btn(icon, tile, disabled): v-icon mdi-trash-can-outline //- v-btn(icon, tile, disabled): v-icon mdi-trash-can-outline
div(v-if='currentPages.length > 0', style='height:400px;') div(v-if='currentPages.length > 0', style='height:400px;')
vue-scroll(:ops='scrollStyle') vue-scroll(:ops='scrollStyle')
v-list.py-0(dense) v-list.py-0(dense)
......
...@@ -219,7 +219,7 @@ export default { ...@@ -219,7 +219,7 @@ export default {
this.isShown = false this.isShown = false
}, },
goBack() { goBack() {
window.history.go(-2) window.history.go(-1)
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment