fix: correct badge color logic in EntryList based on time difference
gitea/salix-front/pipeline/pr-master This commit is unstable Details

This commit is contained in:
Pablo Natek 2025-03-27 09:09:50 +01:00
parent 90a49a8513
commit 5966fe5390
1 changed files with 2 additions and 2 deletions

View File

@ -248,7 +248,7 @@ 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':
@ -273,7 +273,7 @@ function getBadgeAttrs(row) {
default:
break;
}
if (timeDiff < 0) return { color: 'warning', 'text-color': 'black' };
if (timeDiff > 0) return { color: 'info', 'text-color': 'black' };
return { color: 'transparent' };
}