zzz-pc-view 0.0.73 → 0.0.74

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zzz-pc-view",
3
- "version": "0.0.73",
3
+ "version": "0.0.74",
4
4
  "main": "src/index.umd.js",
5
5
  "module": "src/index.es.js",
6
6
  "types": "src/index.d.ts",
package/src/index.es.js CHANGED
@@ -3246,7 +3246,7 @@ class FilterHandler extends ConfigsCreator {
3246
3246
  const filterConfigs = this.filterConfigsRef.value;
3247
3247
  if (filterConfigs) {
3248
3248
  response2 = filterConfigs.reduce((map2, config) => {
3249
- if (config.show !== false) {
3249
+ if (config.show !== false && config.component) {
3250
3250
  const position = config.position ?? 0;
3251
3251
  let configs = map2[position];
3252
3252
  if (!configs) {