replace root foolder name usage

This commit is contained in:
Oleg 2022-09-24 09:28:27 +03:00
parent 54696309f6
commit ac103e35ed
1 changed files with 2 additions and 2 deletions

View File

@ -113,8 +113,8 @@ const isRootFilesSelected = (plugin: BulkRenamePlugin) => {
const { existingSymbol, folderName } = plugin.settings;
return (
existingSymbol === '/' &&
folderName === '/' &&
existingSymbol === ROOT_FOLDER_NAME &&
folderName === ROOT_FOLDER_NAME &&
isViewTypeFolder(plugin.settings)
);
};