mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-24 17:36:47 +08:00
fix: prevent summary countdown text from flickering in data source log table (#17258)
This commit is contained in:
@@ -68,7 +68,11 @@ const TaskCountdown = ({ row, now }: { row: IDataSourceLog; now: number }) => {
|
||||
return '';
|
||||
}
|
||||
|
||||
return <span>Task starts in {formatDuration(remainingSeconds)}</span>;
|
||||
return (
|
||||
<span className="tabular-nums">
|
||||
Task starts in {formatDuration(remainingSeconds)}
|
||||
</span>
|
||||
);
|
||||
};
|
||||
|
||||
const getSummary = (row: IDataSourceLog, now: number) => {
|
||||
|
||||
Reference in New Issue
Block a user