@eturnity/eturnity_reusable_components 8.16.2--EPDM-14330.7 → 8.16.2--EPDM-14330.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,6 +1,6 @@
1
1
  {
2
2
  "name": "@eturnity/eturnity_reusable_components",
3
- "version": "8.16.2--EPDM-14330.7",
3
+ "version": "8.16.2--EPDM-14330.8",
4
4
  "files": [
5
5
  "dist",
6
6
  "src"
@@ -484,10 +484,17 @@
484
484
  label: this.$gettext('is_after_or_on'),
485
485
  },
486
486
  ]
487
+
487
488
  if (this.selectedSort?.[index]?.column === 'updated') {
488
489
  return dateOptions
489
490
  }
490
491
 
492
+ if (this.selectedSort?.[index]?.column === 'project_status') {
493
+ return generalOptions.filter(
494
+ (option) => option.value !== 'contains_none'
495
+ )
496
+ }
497
+
491
498
  return generalOptions
492
499
  },
493
500
  getSelectedLabel({ type, value, index }) {