mirror of https://github.com/Lissy93/dashy.git
💚 Fix ordering issue raised by CI
This commit is contained in:
parent
54c8805cd4
commit
fed991dbdd
|
@ -63,6 +63,11 @@ export default {
|
||||||
IconOpen,
|
IconOpen,
|
||||||
IconClose,
|
IconClose,
|
||||||
},
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
settingsVisible: true,
|
||||||
|
};
|
||||||
|
},
|
||||||
computed: {
|
computed: {
|
||||||
sections() {
|
sections() {
|
||||||
return this.$store.getters.sections;
|
return this.$store.getters.sections;
|
||||||
|
@ -91,9 +96,9 @@ export default {
|
||||||
searchVisible() {
|
searchVisible() {
|
||||||
return this.$store.getters.visibleComponents.searchBar;
|
return this.$store.getters.visibleComponents.searchBar;
|
||||||
},
|
},
|
||||||
settingsVisible() {
|
|
||||||
return this.getSettingsVisibility();
|
|
||||||
},
|
},
|
||||||
|
mounted() {
|
||||||
|
this.settingsVisible = this.getSettingsVisibility();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
userIsTypingSomething(something) {
|
userIsTypingSomething(something) {
|
||||||
|
|
Loading…
Reference in New Issue