Skip to content

Commit 5525bbe

Browse files
author
Dave Conway-Jones
committed
fix svg pointer colours - release as 2.13.2
1 parent 0b45ed3 commit 5525bbe

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

CHANGELOG.md

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

2+
### 2.13.2: Maintenance Release
3+
4+
**Fixes**
5+
6+
- Revert change that broke gauge pointer colours
7+
28
### 2.13.1: Maintenance Release
39

410
**Fixes**
@@ -9,6 +15,8 @@
915
- Remove circular ref in menu that caused problems with 0.20 beta
1016
- Let ui_text node send data onBlur when in wait for key mode
1117
- Update Angular dependency to 1.7.6 - Issue #462
18+
- Add X-UA-Compatible tag to help to get IE-11 to behave
19+
- Fix css to use numerics not incorrect name - Issue #469
1220

1321
### 2.13.0: Milestone Release
1422

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.13.1",
3+
"version": "2.13.2",
44
"description": "A set of dashboard nodes for Node-RED",
55
"keywords": [
66
"node-red"

ui.js

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -381,21 +381,13 @@ function updateUi(to) {
381381
to = io;
382382
}
383383
process.nextTick(function() {
384-
var m = [];
385384
menu.forEach(function(o) {
386-
if (o.hasOwnProperty("items")) {
387-
o.items.forEach(function(i) {
388-
if (i.hasOwnProperty("header")) {
389-
delete i.header._flow;
390-
}
391-
})
392-
}
393-
m.push(o);
385+
o.theme = baseConfiguration.theme;
394386
});
395387
to.emit('ui-controls', {
396388
site: baseConfiguration.site,
397389
theme: baseConfiguration.theme,
398-
menu: m,
390+
menu: menu,
399391
globals: globals
400392
});
401393
updateUiPending = false;

0 commit comments

Comments
 (0)