Cleaning up

parent 82a0faf0
...@@ -133,7 +133,7 @@ ...@@ -133,7 +133,7 @@
}, },
watch: { watch: {
selectedPages() { selectedPages() {
this.selectedPages.length >= 1 ? this.showExtraButtons = true : this.showExtraButtons = false; this.showExtraButtons = this.selectedPages.length >= 1;
}, },
}, },
methods: { methods: {
......
...@@ -91931,7 +91931,7 @@ exports.default = { ...@@ -91931,7 +91931,7 @@ exports.default = {
watch: { watch: {
selectedPages: function selectedPages() { selectedPages: function selectedPages() {
this.selectedPages.length >= 1 ? this.showExtraButtons = true : this.showExtraButtons = false; this.showExtraButtons = this.selectedPages.length >= 1;
} }
}, },
methods: { methods: {
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