Skip to content

Commit

Permalink
Linter
Browse files Browse the repository at this point in the history
  • Loading branch information
Haarolean committed Mar 19, 2024
1 parent ef87fe7 commit 494e790
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions frontend/src/components/Topics/Topic/Statistics/Metrics.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import * as S from './Statistics.styles';
import Total from './Indicators/Total';
import SizeStats from './Indicators/SizeStats';
import PartitionTable from './PartitionTable';
import {LabelValue} from "./Statistics.styles";
import { LabelValue } from './Statistics.styles';

const Metrics: React.FC = () => {
const params = useAppParams<RouteParamsClusterTopic>();
Expand Down Expand Up @@ -76,7 +76,9 @@ const Metrics: React.FC = () => {
})}
</LabelValue>
<Label>Passed since start</Label>
<LabelValue>{calculateTimer(data.progress.startedAt as number)}</LabelValue>
<LabelValue>
{calculateTimer(data.progress.startedAt as number)}
</LabelValue>
<Label>Scanned messages</Label>
<LabelValue>{data.progress.msgsScanned}</LabelValue>
<Label>Scanned size</Label>
Expand Down

0 comments on commit 494e790

Please sign in to comment.