Skip to content

Commit 44ef8c8

Browse files
committed
Fix links editable
(no idea why it broke :-( )
1 parent 49350a8 commit 44ef8c8

File tree

5 files changed

+23
-17
lines changed

5 files changed

+23
-17
lines changed

CHANGELOG.md

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

2+
### 3.6.1: Maintenance Release
3+
4+
- Fix links not being editable. Issue #819
5+
26
### 3.6.0: Milestone Release
37

48
- Let dropdown be clearable. PR #816

dist/dashboard.appcache

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
CACHE MANIFEST
2-
# Time: Thu Aug 31 2023 21:11:58 GMT+0100 (British Summer Time)
2+
# Time: Sun Sep 24 2023 20:24:51 GMT+0100 (British Summer Time)
33

44
CACHE:
55
i18n.js
@@ -26,4 +26,4 @@ loading.html
2626
NETWORK:
2727
*
2828

29-
# hash: dd12675f374146045adff1fb001753bbbf10d70a4b2684622cc63ca9b55ca7cf
29+
# hash: 3f62d82165a480a95d91ea204cf9b6692e104ff4d1225dc78ad68179e64ab4f7

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.

nodes/ui_base.html

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -434,15 +434,17 @@
434434
var tab = {};
435435
// Tab information
436436
for (var cnt = 0; cnt < nodes.length; cnt++) {
437-
if (nodes[cnt].type == "ui_tab" && nodes[cnt].id == tabID) {
438-
tab = {
439-
id: nodes[cnt].id,
440-
name: nodes[cnt].name,
441-
type: nodes[cnt].type,
442-
order: nodes[cnt].order,
443-
groups: []
444-
};
445-
break;
437+
if (nodes[cnt].id == tabID) {
438+
if (nodes[cnt].type == "ui_tab" || nodes[cnt].type == "ui_link") {
439+
tab = {
440+
id: nodes[cnt].id,
441+
name: nodes[cnt].name,
442+
type: nodes[cnt].type,
443+
order: nodes[cnt].order,
444+
groups: []
445+
};
446+
break;
447+
}
446448
}
447449
}
448450
// Group information

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-red-dashboard",
3-
"version": "3.6.0",
3+
"version": "3.6.1",
44
"description": "A set of dashboard nodes for Node-RED",
55
"keywords": [
66
"node-red"
@@ -131,11 +131,11 @@
131131
"map-stream": "^0.0.7",
132132
"material-design-icons-iconfont": "^6.7.0",
133133
"moment": "~2.29.4",
134-
"sass": "^1.66.1",
135-
"sprintf-js": "^1.1.2",
134+
"sass": "^1.68.0",
135+
"sprintf-js": "^1.1.3",
136136
"streamqueue": "~1.1.2",
137137
"svg-morpheus": "^0.3.0",
138-
"terser": "^5.19.3",
138+
"terser": "^5.20.0",
139139
"tinycolor2": "^1.6.0",
140140
"weather-icons-lite": "^1.6.1"
141141
},

0 commit comments

Comments
 (0)