fix: editor select back button (#1098)

pull/1099/head
Nicolas Giard 5 years ago committed by GitHub
parent f7ddd56bac
commit 0f079e2d5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -187,7 +187,7 @@
v-divider.mt-3
v-switch(
inset
label='Subresource Integrity'
label='Subresource Integrity (SRI)'
color='red darken-2'
v-model='config.securitySRI'
persistent-hint

@ -44,9 +44,9 @@
v-flex(xs7)
v-toolbar(color='blue darken-2', dark, dense, flat)
.body-2 Pages
v-spacer
v-btn(icon, tile, disabled): v-icon mdi-content-save-move-outline
v-btn(icon, tile, disabled): v-icon mdi-trash-can-outline
//- v-spacer
//- v-btn(icon, tile, disabled): v-icon mdi-content-save-move-outline
//- v-btn(icon, tile, disabled): v-icon mdi-trash-can-outline
div(v-if='currentPages.length > 0', style='height:400px;')
vue-scroll(:ops='scrollStyle')
v-list.py-0(dense)

@ -219,7 +219,7 @@ export default {
this.isShown = false
},
goBack() {
window.history.go(-2)
window.history.go(-1)
}
}
}

Loading…
Cancel
Save