Skip to content

Commit

Permalink
Fix numbers formatting with toLocaleString()
Browse files Browse the repository at this point in the history
  • Loading branch information
Gauravkumar1502 authored Sep 22, 2023
1 parent 53a6553 commit b52b3c5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const TopicTable: React.FC = () => {
}
return partitions.reduce((memo, { offsetMax, offsetMin }) => {

Check warning on line 77 in kafka-ui-react-app/src/components/Topics/List/TopicTable.tsx

View workflow job for this annotation

GitHub Actions / build-and-test

Insert `⏎············`

Check warning on line 77 in kafka-ui-react-app/src/components/Topics/List/TopicTable.tsx

View workflow job for this annotation

GitHub Actions / build-and-test

Insert `⏎············`

Check warning on line 77 in kafka-ui-react-app/src/components/Topics/List/TopicTable.tsx

View workflow job for this annotation

GitHub Actions / build-and-test

Insert `⏎············`

Check warning on line 77 in kafka-ui-react-app/src/components/Topics/List/TopicTable.tsx

View workflow job for this annotation

GitHub Actions / build-and-test

Insert `⏎············`

Check warning on line 77 in kafka-ui-react-app/src/components/Topics/List/TopicTable.tsx

View workflow job for this annotation

GitHub Actions / build-and-test

Insert `⏎············`
return memo + (offsetMax - offsetMin);

Check warning on line 78 in kafka-ui-react-app/src/components/Topics/List/TopicTable.tsx

View workflow job for this annotation

GitHub Actions / build-and-test

Insert `··`

Check warning on line 78 in kafka-ui-react-app/src/components/Topics/List/TopicTable.tsx

View workflow job for this annotation

GitHub Actions / build-and-test

Insert `··`

Check warning on line 78 in kafka-ui-react-app/src/components/Topics/List/TopicTable.tsx

View workflow job for this annotation

GitHub Actions / build-and-test

Insert `··`

Check warning on line 78 in kafka-ui-react-app/src/components/Topics/List/TopicTable.tsx

View workflow job for this annotation

GitHub Actions / build-and-test

Insert `··`

Check warning on line 78 in kafka-ui-react-app/src/components/Topics/List/TopicTable.tsx

View workflow job for this annotation

GitHub Actions / build-and-test

Insert `··`
}, 0);
}, 0).toLocaleString();

Check warning on line 79 in kafka-ui-react-app/src/components/Topics/List/TopicTable.tsx

View workflow job for this annotation

GitHub Actions / build-and-test

Replace `},·0)` with `··},·0)⏎············`

Check warning on line 79 in kafka-ui-react-app/src/components/Topics/List/TopicTable.tsx

View workflow job for this annotation

GitHub Actions / build-and-test

Replace `},·0)` with `··},·0)⏎············`

Check warning on line 79 in kafka-ui-react-app/src/components/Topics/List/TopicTable.tsx

View workflow job for this annotation

GitHub Actions / build-and-test

Replace `},·0)` with `··},·0)⏎············`

Check warning on line 79 in kafka-ui-react-app/src/components/Topics/List/TopicTable.tsx

View workflow job for this annotation

GitHub Actions / build-and-test

Replace `},·0)` with `··},·0)⏎············`

Check warning on line 79 in kafka-ui-react-app/src/components/Topics/List/TopicTable.tsx

View workflow job for this annotation

GitHub Actions / build-and-test

Replace `},·0)` with `··},·0)⏎············`
},
},
{
Expand Down

0 comments on commit b52b3c5

Please sign in to comment.