Skip to content

Commit

Permalink
* Added basal and careportal to default plugins
Browse files Browse the repository at this point in the history
* Changed report BG target to allow fractional numbers
  • Loading branch information
sulkaharo committed Nov 15, 2020
1 parent d7f472a commit a9692d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ function init () {
}

//TODO: getting sent in status.json, shouldn't be
settings.DEFAULT_FEATURES = ['bgnow', 'delta', 'direction', 'timeago', 'devicestatus', 'upbat', 'errorcodes', 'profile', 'dbsize', 'runtimestate'];
settings.DEFAULT_FEATURES = ['bgnow', 'delta', 'direction', 'timeago', 'devicestatus', 'upbat', 'errorcodes', 'profile', 'dbsize', 'runtimestate', 'basal', 'careportal'];

var wasSet = [];

Expand Down
4 changes: 2 additions & 2 deletions views/reportindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@
<tr>
<td colspan="2">
<span class="translate">Target BG range bottom</span>:
<input type="number" size="3" id="rp_targetlow">
<input type="number" size="3" step="0.1" id="rp_targetlow">
<span class="translate">top</span>:
<input type="number" size="3" id="rp_targethigh">
<input type="number" size="3" step="0.1" id="rp_targethigh">
</td>
<td></td>
</tr>
Expand Down

0 comments on commit a9692d1

Please sign in to comment.