Skip to content

Commit

Permalink
Setting power level causes configurator to crash.
Browse files Browse the repository at this point in the history
This fixes that.
  • Loading branch information
mmosca committed Aug 19, 2024
1 parent df61d0e commit fc52254
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tabs/configuration.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ TABS.configuration.initialize = function (callback, scrollPosition) {
option.appendTo(vtx_power);
}
vtx_power.on('change', function () {
FC.FC.VTX_CONFIG.power = parseInt($(this).val());
FC.VTX_CONFIG.power = parseInt($(this).val());
});

var vtx_low_power_disarm = $('#vtx_low_power_disarm');
Expand Down

0 comments on commit fc52254

Please sign in to comment.