Skip to content

Commit

Permalink
fix: setup file extension on linux (crowbartools#2677)
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisrijsdijk committed Aug 10, 2024
1 parent a045457 commit 029c872
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/app/directives/modals/setups/create-setup-modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@
/**@type {Electron.SaveDialogOptions} */
const saveDialogOptions = {
buttonLabel: "Save Setup",
defaultPath: sanitizeFileName($ctrl.setup.name),
defaultPath: `${sanitizeFileName($ctrl.setup.name)}.firebotsetup`,
title: "Save Setup File",
filters: [
{name: "Firebot Setup Files", extensions: ['firebotsetup']}
Expand Down

0 comments on commit 029c872

Please sign in to comment.