@bildvitta/quasar-ui-asteroid 3.17.0-beta.7 → 3.17.0-beta.8

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.17.0-beta.7",
4
+ "version": "3.17.0-beta.8",
5
5
  "author": "Bild & Vitta <systemteam@bild.com.br>",
6
6
  "license": "MIT",
7
7
  "main": "dist/asteroid.cjs.min.js",
@@ -263,9 +263,11 @@ export default {
263
263
  },
264
264
 
265
265
  parentComponentProps () {
266
+ const hasMinHeight = this.isFetching || this.hasDataSets
267
+
266
268
  return {
267
269
  class: 'relative-position',
268
- style: `min-height: ${this.hasDataSets ? this.height : 'auto'}`
270
+ style: `min-height: ${hasMinHeight ? this.height : 'auto'}`
269
271
  }
270
272
  },
271
273