Browse Source

[frontend] Fix incorrect type in the FacetSelector component

Johan Ahlen 4 years ago
parent
commit
3cb4617e3a
1 changed files with 1 additions and 1 deletions
  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: () => ({})
         default: () => ({})
       },
       },
       fieldLabel: {
       fieldLabel: {
-        type: Object as PropType<string | null>,
+        type: String as PropType<string | null>,
         required: false,
         required: false,
         default: null
         default: null
       },
       },