aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/components/LdTagInput.vue
diff options
context:
space:
mode:
Diffstat (limited to 'viewer/src/components/LdTagInput.vue')
-rw-r--r--viewer/src/components/LdTagInput.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/viewer/src/components/LdTagInput.vue b/viewer/src/components/LdTagInput.vue
index 855813a..49ea3f4 100644
--- a/viewer/src/components/LdTagInput.vue
+++ b/viewer/src/components/LdTagInput.vue
@@ -28,7 +28,7 @@
28 field="display" 28 field="display"
29 type="is-black" 29 type="is-black"
30 size="is-medium" 30 size="is-medium"
31 class="paneltag-input" 31 :class="$style.paneltagInput"
32 @typing="searchTags" 32 @typing="searchTags"
33 @add="clearCurrentFilter" 33 @add="clearCurrentFilter"
34 @remove="clearCurrentFilter" 34 @remove="clearCurrentFilter"
@@ -89,8 +89,8 @@ export default class LdTagInput extends Vue {
89} 89}
90</script> 90</script>
91 91
92<style lang="scss"> 92<style lang="scss" module>
93.paneltag-input .autocomplete .dropdown-content { 93.paneltagInput :global(.autocomplete) :global(.dropdown-content) {
94 max-height: 300px; 94 max-height: 300px;
95} 95}
96</style> 96</style>