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 +1 -1
- package/src/index.es.js +1 -1
- package/src/index.umd.js +1 -1
package/package.json
CHANGED
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) {
|