Przeglądaj źródła

🍎 style(ui): add shape="circle" prop to Tag component to display circular tag style

t0ng7u 9 miesięcy temu
rodzic
commit
e224ee5498

+ 1 - 1
web/src/components/table/task-logs/TaskLogsColumnDefs.js

@@ -79,7 +79,7 @@ function renderDuration(submit_time, finishTime) {
 
   // 返回带有样式的颜色标签
   return (
-    <Tag color={color} prefixIcon={<Clock size={14} />}>
+    <Tag color={color} shape='circle' prefixIcon={<Clock size={14} />}>
       {durationSec} 秒
     </Tag>
   );