From fa256c17cfbb98ed921a7abeac7fee7330437f40 Mon Sep 17 00:00:00 2001 From: Robin Davies Date: Sat, 19 Oct 2024 02:56:30 -0400 Subject: [PATCH] Display file extensions in File Property dialogs. --- react/src/FilePropertyDialog.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react/src/FilePropertyDialog.tsx b/react/src/FilePropertyDialog.tsx index c387b8f..885a210 100644 --- a/react/src/FilePropertyDialog.tsx +++ b/react/src/FilePropertyDialog.tsx @@ -625,7 +625,7 @@ export default withStyles(styles, { withTheme: true })( { displayValue = pathFileName(displayValue); } else { - displayValue = pathFileNameOnly(displayValue); + displayValue = pathFileName(displayValue); } } let selected = value.filename === this.state.selectedFile;