Skip to content

Commit 8ea3fc8

Browse files
author
Dave Conway-Jones
committed
bump for release
1 parent aa8a6c2 commit 8ea3fc8

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11

2-
### 2.9.1-beta: Maintenance Release
2+
### 2.9.1: Maintenance Release
33

44
**Fixes**
55

6-
- Let dashboard work without Localstorage. PR #383
7-
- Let numeric field also be editable
6+
- Let dashboard work if localstorage not available. PR #383
7+
- Let numeric field also be editable
8+
- Clean up gauge value (to be more as previously). Issue #385
89

910
### 2.9.0: Milestone Release
1011

dist/dashboard.appcache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ weather-icons-lite/fonts/weather-icons-lite.woff2
2020
NETWORK:
2121
*
2222

23-
# hash: 8ef2a8d8639072b409d3712e163a223f4d057ecb3106049f30aecfb3a2d799c2
23+
# hash: 904f15b330f0a738f41ef5cfe1e7d0413723d5791adf1ecc3c0c361d357472e3

dist/js/app.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-red-dashboard",
3-
"version": "2.9.1-beta",
3+
"version": "2.9.1",
44
"description": "A set of dashboard nodes for Node-RED",
55
"keywords": [
66
"node-red"

src/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ app.controller('MainController', ['$mdSidenav', '$window', 'UiEvents', '$locatio
154154
for (var g in main.menu[t].items) {
155155
if (main.menu[t].items.hasOwnProperty(g)) {
156156
var c = (main.menu[t].header+" "+main.menu[t].items[g].header.name).replace(/ /g,"_");
157-
if (localStorage && localStorage.getItem(c) == "true") {
157+
if ((typeof localStorage !== 'undefined') && (localStorage.getItem(c) == "true")) {
158158
main.menu[t].items[g].header.config.hidden = true;
159159
flag = true;
160160
}

0 commit comments

Comments
 (0)