Commit edc1274c93032279152b20dd98936c7e23050c0d

Authored by ww
1 parent d8ac959b

fix: 修复部分组件无产品id时查询报错

... ... @@ -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(() => {
... ...