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,
|
||||
IconClose,
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
settingsVisible: true,
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
sections() {
|
||||
return this.$store.getters.sections;
|
||||
|
@ -91,9 +96,9 @@ export default {
|
|||
searchVisible() {
|
||||
return this.$store.getters.visibleComponents.searchBar;
|
||||
},
|
||||
settingsVisible() {
|
||||
return this.getSettingsVisibility();
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
this.settingsVisible = this.getSettingsVisibility();
|
||||
},
|
||||
methods: {
|
||||
userIsTypingSomething(something) {
|
||||
|
|
Loading…
Reference in New Issue