mirror of
https://github.com/Lissy93/dashy.git
synced 2024-12-01 04:33:02 +03:00
💚 Fix ordering issue raised by CI
This commit is contained in:
parent
af8959483f
commit
54c8805cd4
@ -88,12 +88,12 @@ export default {
|
||||
visibleComponents() {
|
||||
return this.$store.getters.visibleComponents;
|
||||
},
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
settingsVisible: this.getSettingsVisibility(),
|
||||
searchVisible: (this.visibleComponents || defaultVisibleComponents).searchBar,
|
||||
};
|
||||
searchVisible() {
|
||||
return this.$store.getters.visibleComponents.searchBar;
|
||||
},
|
||||
settingsVisible() {
|
||||
return this.getSettingsVisibility();
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
userIsTypingSomething(something) {
|
||||
|
Loading…
Reference in New Issue
Block a user