mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-25 06:49:23 +01:00
Reformats code
This commit is contained in:
@@ -30,7 +30,7 @@ export default {
|
||||
name: "Search",
|
||||
data() {
|
||||
return {
|
||||
showSearch: false
|
||||
showSearch: false,
|
||||
};
|
||||
},
|
||||
mounted() {
|
||||
@@ -45,12 +45,12 @@ export default {
|
||||
},
|
||||
methods: {
|
||||
...mapActions({
|
||||
updateSearchFilter: "SET_SEARCH"
|
||||
updateSearchFilter: "SET_SEARCH",
|
||||
}),
|
||||
resetSearch() {
|
||||
this.showSearch = false;
|
||||
this.filter = "";
|
||||
}
|
||||
},
|
||||
},
|
||||
computed: {
|
||||
...mapState(["searchFilter", "settings"]),
|
||||
@@ -60,9 +60,9 @@ export default {
|
||||
},
|
||||
set(value) {
|
||||
this.updateSearchFilter(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user