File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed
Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 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**
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
Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments