From f535eeb29d558f50924818becbb1d6829fa12cde Mon Sep 17 00:00:00 2001 From: Junhao Liao Date: Wed, 18 Sep 2024 17:56:13 -0400 Subject: [PATCH] Rename 'File Info' tab display name to 'File info'. --- new-log-viewer/src/typings/tab.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/new-log-viewer/src/typings/tab.ts b/new-log-viewer/src/typings/tab.ts index c36231ae..3daa9877 100644 --- a/new-log-viewer/src/typings/tab.ts +++ b/new-log-viewer/src/typings/tab.ts @@ -9,7 +9,7 @@ enum TAB_NAME { */ const TAB_DISPLAY_NAMES: Record = Object.freeze({ [TAB_NAME.NONE]: "None", - [TAB_NAME.FILE_INFO]: "File Info", + [TAB_NAME.FILE_INFO]: "File info", [TAB_NAME.SETTINGS]: "Settings", });