Skip to content

Commit

Permalink
fix null cloudbuildOptions
Browse files Browse the repository at this point in the history
  • Loading branch information
haslinghuis committed Nov 18, 2024
1 parent 8dd138c commit 1bb0bf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/tabs/firmware_flasher.js
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ firmware_flasher.initialize = function (callback) {
.filter(option => option.group === 'OSD')
.map(option => {
option.name = option.groupedName;
option.default = self.cloudBuildOptions.includes(option.value);
option.default = self.cloudBuildOptions?.includes(option.value);
return option;
});

Expand Down

0 comments on commit 1bb0bf8

Please sign in to comment.