mediacube-ui 0.1.399 → 0.1.400

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/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.1.400](https://github.com/MediaCubeCo/mcui/compare/v0.1.399...v0.1.400) (2025-07-29)
6
+
5
7
  ### [0.1.399](https://github.com/MediaCubeCo/mcui/compare/v0.1.398...v0.1.399) (2025-07-28)
6
8
 
7
9
  ### [0.1.398](https://github.com/MediaCubeCo/mcui/compare/v0.1.397...v0.1.398) (2025-07-23)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mediacube-ui",
3
- "version": "0.1.399",
3
+ "version": "0.1.400",
4
4
  "description": "Design system for Mediacube services",
5
5
  "author": "Mediacube",
6
6
  "private": false,
@@ -355,7 +355,7 @@ export default {
355
355
  watch: {
356
356
  value: {
357
357
  handler(val) {
358
- this.currentValues = { ...val.filter }
358
+ if (val.filter) this.currentValues = { ...val.filter }
359
359
  if (val.filter_name) {
360
360
  try {
361
361
  this.currentValuesName = JSON.parse(decodeURI(atob(val.filter_name)))
@@ -363,7 +363,7 @@ export default {
363
363
  console.error(`Can't parse filters`)
364
364
  }
365
365
  }
366
- this.buttonConfirmIsDisable = _isEmpty(val.filter) || _isEmpty(val.filter_name)
366
+ this.buttonConfirmIsDisable = _isEmpty(this.currentValues) || _isEmpty(this.currentValuesName)
367
367
  },
368
368
  immediate: true,
369
369
  deep: true,