Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
a7cb4c2
Bump Nightscout version number to 0.10.1-dev
sulkaharo Sep 23, 2017
6adb76e
Fixes hourly filtering in distrubution reports, reported in #2864
sulkaharo Sep 28, 2017
e31cbb4
SVG dimension fix
unsoluble-test Oct 6, 2017
f28c3f9
preserve original treatment collection
MilosKozak Oct 7, 2017
4e1837d
Remove pattern regex from basal change field
unsoluble-test Oct 9, 2017
d6a0b10
Use lodash cloneDeep instead of JSON serialize/desearialize
sulkaharo Oct 11, 2017
18e7b35
update Russian
apanasef Oct 12, 2017
1ffa0b5
Merge pull request #2913 from apanasef/patch-19
sulkaharo Oct 13, 2017
4e2e871
Merge pull request #2894 from unsoluble/SVG-dimension-fix
sulkaharo Oct 13, 2017
16f55bc
Merge pull request #2904 from unsoluble/Allow-negative-values-in-CP
sulkaharo Oct 13, 2017
06774d7
Merge pull request #2911 from nightscout/fixv2apiv2
sulkaharo Oct 14, 2017
7e662ac
Cleanup: move cache buster token generation to /bin, remove /scripts
sulkaharo Oct 15, 2017
48c8e7e
Fix express-minify file cache path to reduce the memory footprint of …
sulkaharo Oct 15, 2017
3ab41ce
Display RSSI on Loop pill
sulkaharo Oct 15, 2017
94cd87f
Add missing fontello icons to main CSS
sulkaharo Oct 15, 2017
1f0b3ef
Update version to release
sulkaharo Oct 15, 2017
486f6c3
Merge branch 'master' into dev
sulkaharo Oct 15, 2017
42a3a65
Loop RSSI fix
sulkaharo Oct 15, 2017
703a30d
One more Loop RSSI fix
sulkaharo Oct 15, 2017
c99570f
Always show RSSI
sulkaharo Oct 15, 2017
9f7de63
Merge pull request #2918 from nightscout/dev
sulkaharo Oct 15, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Always show RSSI
  • Loading branch information
sulkaharo committed Oct 15, 2017
commit c99570ff1e02a41b2d3f6ce49b3b9b178ced3fdb
5 changes: 3 additions & 2 deletions lib/plugins/loop.js
Original file line number Diff line number Diff line change
Expand Up @@ -313,9 +313,10 @@ function init(ctx) {
} else if ('looping' === prop.display.code) {
addLastEnacted();
} else {
addRecommendedTempBasal();
addRSSI();
addRecommendedTempBasal();
}

addRSSI();

var sorted = _.sortBy(events, function toMill(event) {
return event.time.valueOf();
Expand Down