@bildvitta/quasar-ui-asteroid 3.11.0-beta.8 → 3.11.0-beta.9
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
|
@@ -137,9 +137,11 @@ export default {
|
|
|
137
137
|
const hasField = fields.includes(key)
|
|
138
138
|
|
|
139
139
|
if (hasField) {
|
|
140
|
-
const field = { ...this.fields[key], ...this.formattedFieldsProps?.[key] }
|
|
141
|
-
|
|
140
|
+
const field = { ...this.fields[key], ...this.formattedFieldsProps?.[decamelize(key)] }
|
|
142
141
|
const value = humanize(field, this.normalizeValues(filters[key], field?.multiple))
|
|
142
|
+
|
|
143
|
+
if (!value) continue
|
|
144
|
+
|
|
143
145
|
const { label, name } = field
|
|
144
146
|
|
|
145
147
|
activeFilters[key] = { label, name, value }
|