* [task#133967,done,2h] modify delay label.

This commit is contained in:
liumengyi
2024-12-04 09:53:51 +08:00
committed by 田淑杰
parent bc86d4dbe2
commit 51cfdd3623
10 changed files with 17 additions and 16 deletions
+2 -2
View File
@@ -12,8 +12,8 @@ window.getItem = function(info)
{
if(info.item.delay)
{
info.item.suffix = delayed;
info.item.suffixClass = 'label danger rounded-xl' + (info.item.status == 'doing' ? ' mr-8' : '');
info.item.suffix = delayInfo.replace('%s', info.item.delay);
info.item.suffixClass = 'label danger-pale circle size-sm nowrap' + (info.item.status == 'doing' ? ' mr-8' : '');
}
if(info.item.status == 'doing') info.item.prefix = {component: 'ProgressCircle', props: {percent: info.item.progress, size: 24}};
if(info.item.cardType == 'doingExecutions' && privs.canViewExecution)