소스 검색

[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
       },