aboutsummaryrefslogtreecommitdiff
path: root/src/site/components/search
diff options
context:
space:
mode:
Diffstat (limited to 'src/site/components/search')
-rw-r--r--src/site/components/search/Search.vue26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/site/components/search/Search.vue b/src/site/components/search/Search.vue
index 72a5707..778474c 100644
--- a/src/site/components/search/Search.vue
+++ b/src/site/components/search/Search.vue
@@ -36,13 +36,13 @@ import SearchInput from '~/components/search-input/SearchInput.vue';
export default {
components: {
- SearchInput,
+ SearchInput
},
props: {
hiddenHints: {
type: Array,
- default: () => [],
- },
+ default: () => []
+ }
},
data() {
return {
@@ -51,35 +51,35 @@ export default {
{
'name': 'tag',
'valueFormat': 'name',
- 'hint': '',
+ 'hint': ''
},
{
'name': 'album',
'valueFormat': 'name',
- 'hint': '',
+ 'hint': ''
},
{
'name': 'before',
'valueFormat': 'specific date',
- 'hint': '',
+ 'hint': ''
},
{
'name': 'during',
'valueFormat': 'specific date',
- 'hint': '',
+ 'hint': ''
},
{
'name': 'after',
'valueFormat': 'specific date',
- 'hint': '',
+ 'hint': ''
},
{
'name': 'file',
'valueFormat': 'generated name',
- 'hint': '',
- },
+ 'hint': ''
+ }
],
- filteredHints: [],
+ filteredHints: []
};
},
created() {
@@ -122,8 +122,8 @@ export default {
if (/:$/gi.test(this.query)) { return; }
}
this.$emit('search', this.query, event);
- },
- },
+ }
+ }
};
</script>