Skip to content

Commit

Permalink
Fix failsafe delay constraints (#3875)
Browse files Browse the repository at this point in the history
Fix failsafe delay contraints
  • Loading branch information
haslinghuis authored Apr 8, 2024
1 parent 146fb04 commit 7474a9b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/tabs/failsafe.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,13 @@
<div class="helpicon cf_tip" i18n_title="failsafeKillSwitchHelp"></div>
</div>
<div class="number stage2">
<label> <input type="number" name="failsafe_delay" min="0" max="200" step="0.1" /> <span
<label> <input type="number" name="failsafe_delay" min="1" max="20" step="0.1" /> <span
i18n="failsafeDelayItem"></span>
</label>
<div class="helpicon cf_tip" i18n_title="failsafeDelayHelp"></div>
</div>
<div class="number stage2">
<label> <input type="number" name="failsafe_throttle_low_delay" min="0" max="300" step="0.1" /> <span
<label> <input type="number" name="failsafe_throttle_low_delay" min="0" max="30" step="0.1" /> <span
i18n="failsafeThrottleLowItem"></span>
</label>
<div class="helpicon cf_tip" i18n_title="failsafeThrottleLowHelp"></div>
Expand All @@ -106,7 +106,7 @@
</label>
</div>
<div class="number">
<label> <input type="number" name="failsafe_off_delay" min="0" max="200" step="0.1" /> <span
<label> <input type="number" name="failsafe_off_delay" min="0" max="20" step="0.1" /> <span
i18n="failsafeOffDelayItem"></span>
</label>
<div class="helpicon cf_tip" i18n_title="failsafeOffDelayHelp"></div>
Expand Down

0 comments on commit 7474a9b

Please sign in to comment.