mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-25 05:35:41 +00:00
Merge pull request #4250 from lohxt1/browse_files_fn_fix
fix incorrect vars in browse_files function
This commit is contained in:
@@ -131,7 +131,7 @@ const browseFiles = async (win, filters = [], properties = []) => {
|
||||
return [];
|
||||
}
|
||||
|
||||
return filePaths.map((path) => path.resolve(path)).filter((path) => isFile(path));
|
||||
return filePaths.map((filePath) => path.resolve(filePath)).filter((filePath) => isFile(filePath));
|
||||
};
|
||||
|
||||
const chooseFileToSave = async (win, preferredFileName = '') => {
|
||||
|
||||
Reference in New Issue
Block a user