summaryrefslogtreecommitdiff
path: root/src/components/Global/Search.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Global/Search.vue')
-rw-r--r--src/components/Global/Search.vue12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/components/Global/Search.vue b/src/components/Global/Search.vue
index eeb909a8..778965e1 100644
--- a/src/components/Global/Search.vue
+++ b/src/components/Global/Search.vue
@@ -43,14 +43,14 @@ export default {
props: {
placeholder: {
type: String,
- default: function() {
+ default: function () {
return this.$t('global.form.search');
- }
- }
+ },
+ },
},
data() {
return {
- filter: null
+ filter: null,
};
},
methods: {
@@ -61,8 +61,8 @@ export default {
this.filter = '';
this.$emit('clearSearch');
this.$refs.searchInput.focus();
- }
- }
+ },
+ },
};
</script>