Showing
1 changed file
with
1 additions
and
1 deletions
... | ... | @@ -33,7 +33,7 @@ export const useDataSource = (propsRef: ComputedRef<Recordable>) => { |
33 | 33 | return [...prev, ...ids]; |
34 | 34 | }, []); |
35 | 35 | |
36 | - return [...new Set(result)]; | |
36 | + return [...new Set(result)].filter(Boolean); | |
37 | 37 | }); |
38 | 38 | |
39 | 39 | const getSharePageData = computed(() => { | ... | ... |