浏览代码

[frontend] Fix incorrect type in the FacetSelector component

Johan Ahlen 4 年之前
父节点
当前提交
3cb4617e3a
共有 1 个文件被更改,包括 1 次插入1 次删除
  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
       },