Skip to content

Commit

Permalink
Add tooltips for the newly introduced variables
Browse files Browse the repository at this point in the history
  • Loading branch information
eamars committed Oct 5, 2023
1 parent 98fb225 commit 8db2ae9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/html/dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,8 @@ <h1>Control</h1>
<form class="config-form" id="charge_mode_config" action="/rest/charge_mode_config">
<div class="form-group mb-3">
<label for="c_stop">Coarse Trickler Stop Threshold:</label>
<input type="number" class="form-control" id="c_stop" name="c_stop" step="0.001">
<input type="number" class="form-control" id="c_stop" name="c_stop" step="0.001"
data-bs-toggle="tooltip" data-bs-title="If the current charge weight is less than the threshold then the coarse trickler will stop">
</div>

<div class="form-group mb-3">
Expand All @@ -212,7 +213,8 @@ <h1>Control</h1>

<div class="form-group mb-3">
<label for="f_stop">Fine Trickler Stop Threshold:</label>
<input type="number" class="form-control" id="f_stop" name="f_stop" step="0.001">
<input type="number" class="form-control" id="f_stop" name="f_stop" step="0.001"
data-bs-toggle="tooltip" data-bs-title="If the current charge weight is less than the threshold then both coarse and fine trickler will stop">
</div>

<div class="form-group mb-3">
Expand Down

0 comments on commit 8db2ae9

Please sign in to comment.