fix: move warning badge condition to the correct position in getBadgeAttrs function
gitea/salix-front/pipeline/pr-master This commit is unstable Details

This commit is contained in:
Pablo Natek 2025-03-26 09:57:40 +01:00
parent eb4c05bc02
commit 1a1b399606
1 changed files with 1 additions and 1 deletions

View File

@ -249,7 +249,6 @@ function getBadgeAttrs(row) {
let timeDiff = today - timeTicket;
if (timeDiff > 0) return { color: 'info', 'text-color': 'black' };
if (timeDiff < 0) return { color: 'warning', 'text-color': 'black' };
switch (row.entryTypeCode) {
case 'regularization':
case 'life':
@ -274,6 +273,7 @@ function getBadgeAttrs(row) {
default:
break;
}
if (timeDiff < 0) return { color: 'warning', 'text-color': 'black' };
return { color: 'transparent' };
}