@eturnity/eturnity_reusable_components 8.16.2--EPDM-14330.7 → 8.16.2--EPDM-14330.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
@@ -284,7 +284,7 @@
|
|
284
284
|
position: absolute;
|
285
285
|
z-index: 99;
|
286
286
|
top: 8px;
|
287
|
-
left:
|
287
|
+
left: 100%;
|
288
288
|
transform: translateX(-50%);
|
289
289
|
width: max-content;
|
290
290
|
max-width: calc(100vw - 32px);
|
@@ -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 }) {
|