Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed electron files browser for Multipart Form files #1

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/bruno-electron/src/ipc/collection.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ const registerRendererEventHandlers = (mainWindow, watcher, lastOpenedCollection
// browse directory for file
ipcMain.handle('renderer:browse-files', async (event, pathname, request, filters) => {
try {
const filePath = await browseFiles(mainWindow, filters);
const filePaths = await browseFiles(mainWindow, filters);

return filePath;
return filePaths;
} catch (error) {
return Promise.reject(error);
}
Expand Down
2 changes: 1 addition & 1 deletion packages/bruno-electron/src/utils/filesystem.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ const browseDirectory = async (win) => {

const browseFiles = async (win, filters) => {
const { filePaths } = await dialog.showOpenDialog(win, {
properties: ['multiSelections'],
properties: ['openFile', 'multiSelections'],
filters
});

Expand Down