Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: betaflight/betaflight-configurator
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b2967721182a55ca859a50c47f34ee287dee1681
Choose a base ref
..
head repository: betaflight/betaflight-configurator
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b67ffa28ff95324624284df6a13c18c45a916a89
Choose a head ref
Showing with 3 additions and 3 deletions.
  1. +1 −1 src/js/ConfigStorage.js
  2. +1 −1 src/tabs/firmware_flasher.html
  3. +1 −1 src/tabs/setup.html
2 changes: 1 addition & 1 deletion src/js/ConfigStorage.js
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ export function get(key, defaultValue = null) {
}

// if default value is set and key is not found in localStorage, set default value
if (!result[key] && defaultValue) {
if (!result[key] && defaultValue !== null) {
result[key] = defaultValue;
}

2 changes: 1 addition & 1 deletion src/tabs/firmware_flasher.html
Original file line number Diff line number Diff line change
@@ -99,7 +99,7 @@
<td>
</td>
</tr>
<tr class="expertOptions option manual_baud_rate noboarder">
<tr class="expertOptions option manual_baud_rate noborder">
<td>
<label>
<input class="flash_manual_baud toggle" type="checkbox" />
2 changes: 1 addition & 1 deletion src/tabs/setup.html
Original file line number Diff line number Diff line change
@@ -175,7 +175,7 @@
<td i18n="initialSetupDrawing"></td>
<td class="bat-mah-drawing">0.00 A</td>
</tr>
<tr class="noboarder">
<tr class="noborder">
<td i18n="initialSetupRSSI"></td>
<td class="rssi">0 %</td>
</tr>