Browse Source

[frontend] Fix incorrect type in the FacetSelector component

Johan Ahlen 4 năm trước cách đây
mục cha
commit
3cb4617e3a
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      desktop/core/src/desktop/js/components/FacetSelector.vue

+ 1 - 1
desktop/core/src/desktop/js/components/FacetSelector.vue

@@ -78,7 +78,7 @@
         default: () => ({})
       },
       fieldLabel: {
-        type: Object as PropType<string | null>,
+        type: String as PropType<string | null>,
         required: false,
         default: null
       },