@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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bildvitta/quasar-ui-asteroid",
3
3
  "description": "Asteroid",
4
- "version": "3.11.0-beta.8",
4
+ "version": "3.11.0-beta.9",
5
5
  "author": "Bild & Vitta <systemteam@bild.com.br>",
6
6
  "license": "MIT",
7
7
  "main": "dist/asteroid.cjs.min.js",
@@ -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 }