* zin: fix CSS class of suffix text

This commit is contained in:
陈涛
2023-04-14 13:57:50 +08:00
parent 651e343d40
commit 63fdb34f0e
+2 -2
View File
@@ -20,13 +20,13 @@ window.renderReleaseCountCell = function(result, {col, row})
if(col.name === 'storyCount')
{
result[result.length] = {html:'<span class="label size-xs ghost p-0">SP</span>'};
result[result.length] = {html:'<span class="text-gray text-xs">SP</span>'};
return result;
}
if(col.name === 'invested')
{
result[result.length] = {html:'<span class="label size-xs ghost p-0">' + langManDay + '</span>'};
result[result.length] = {html:'<span class="text-gray text-xs">' + langManDay + '</span>'};
return result;
}