|
@@ -40,7 +40,7 @@ export function createTableColumns(): BasicColumn[] {
|
|
|
return (
|
|
return (
|
|
|
<span>
|
|
<span>
|
|
|
<p class="truncate mb-1" title={text}>
|
|
<p class="truncate mb-1" title={text}>
|
|
|
- {text}
|
|
|
|
|
|
|
+ {text && text.length < 30 ? text : text.slice(0, 30) + '...'}
|
|
|
</p>
|
|
</p>
|
|
|
<Progress percent={percent} size="small" status={status} />
|
|
<Progress percent={percent} size="small" status={status} />
|
|
|
</span>
|
|
</span>
|