diff options
Diffstat (limited to 'viewer/src/components/LdTagInput.vue')
-rw-r--r-- | viewer/src/components/LdTagInput.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/viewer/src/components/LdTagInput.vue b/viewer/src/components/LdTagInput.vue index ad0845e..b2a2c58 100644 --- a/viewer/src/components/LdTagInput.vue +++ b/viewer/src/components/LdTagInput.vue | |||
@@ -38,7 +38,7 @@ | |||
38 | </template> | 38 | </template> |
39 | 39 | ||
40 | <script lang="ts"> | 40 | <script lang="ts"> |
41 | import { Component, Vue, Model, Prop } from "vue-property-decorator"; | 41 | import { Component, Vue, Prop, PropSync } from "vue-property-decorator"; |
42 | import { Operation } from "@/@types/Operation"; | 42 | import { Operation } from "@/@types/Operation"; |
43 | import Navigation from "@/services/navigation"; | 43 | import Navigation from "@/services/navigation"; |
44 | import IndexFactory from "@/services/indexfactory"; | 44 | import IndexFactory from "@/services/indexfactory"; |
@@ -46,7 +46,7 @@ import IndexFactory from "@/services/indexfactory"; | |||
46 | @Component | 46 | @Component |
47 | export default class LdTagInput extends Vue { | 47 | export default class LdTagInput extends Vue { |
48 | @Prop({ required: true }) readonly tagsIndex!: Tag.Index; | 48 | @Prop({ required: true }) readonly tagsIndex!: Tag.Index; |
49 | @Model() model!: Tag.Search[]; | 49 | @PropSync("searchFilters", { type: Array, required: true }) model!: Tag.Search[]; |
50 | 50 | ||
51 | filteredTags: Tag.Search[] = []; | 51 | filteredTags: Tag.Search[] = []; |
52 | 52 | ||