We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 703cea2 commit 6ad338eCopy full SHA for 6ad338e
new-log-viewer/src/components/CentralContainer/Sidebar/SidebarTabs/FileInfoTabPanel.tsx
@@ -22,7 +22,7 @@ import CustomTabPanel from "./CustomTabPanel";
22
23
24
/**
25
- * Displays a panel containing the file name and original size of the selected file.
+ * Displays a panel containing the file name and on-disk size of the selected file.
26
*
27
* @return
28
*/
@@ -31,7 +31,7 @@ const FileInfoTabPanel = () => {
31
32
const isFileUnloaded = 0 === fileName.length;
33
const formattedOriginalSize = useMemo(
34
- () => formatSizeInBytes(originalFileSizeInBytes),
+ () => formatSizeInBytes(originalFileSizeInBytes, false),
35
[originalFileSizeInBytes]
36
);
37
0 commit comments