Skip to content

Commit

Permalink
Fix links editable
Browse files Browse the repository at this point in the history
(no idea why it broke :-( )
  • Loading branch information
dceejay committed Sep 24, 2023
1 parent 49350a8 commit 44ef8c8
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 17 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@

### 3.6.1: Maintenance Release

- Fix links not being editable. Issue #819

### 3.6.0: Milestone Release

- Let dropdown be clearable. PR #816
Expand Down
4 changes: 2 additions & 2 deletions dist/dashboard.appcache
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
CACHE MANIFEST
# Time: Thu Aug 31 2023 21:11:58 GMT+0100 (British Summer Time)
# Time: Sun Sep 24 2023 20:24:51 GMT+0100 (British Summer Time)

CACHE:
i18n.js
Expand All @@ -26,4 +26,4 @@ loading.html
NETWORK:
*

# hash: dd12675f374146045adff1fb001753bbbf10d70a4b2684622cc63ca9b55ca7cf
# hash: 3f62d82165a480a95d91ea204cf9b6692e104ff4d1225dc78ad68179e64ab4f7
4 changes: 2 additions & 2 deletions dist/js/app.min.js

Large diffs are not rendered by default.

20 changes: 11 additions & 9 deletions nodes/ui_base.html
Original file line number Diff line number Diff line change
Expand Up @@ -434,15 +434,17 @@
var tab = {};
// Tab information
for (var cnt = 0; cnt < nodes.length; cnt++) {
if (nodes[cnt].type == "ui_tab" && nodes[cnt].id == tabID) {
tab = {
id: nodes[cnt].id,
name: nodes[cnt].name,
type: nodes[cnt].type,
order: nodes[cnt].order,
groups: []
};
break;
if (nodes[cnt].id == tabID) {
if (nodes[cnt].type == "ui_tab" || nodes[cnt].type == "ui_link") {
tab = {
id: nodes[cnt].id,
name: nodes[cnt].name,
type: nodes[cnt].type,
order: nodes[cnt].order,
groups: []
};
break;
}
}
}
// Group information
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-red-dashboard",
"version": "3.6.0",
"version": "3.6.1",
"description": "A set of dashboard nodes for Node-RED",
"keywords": [
"node-red"
Expand Down Expand Up @@ -131,11 +131,11 @@
"map-stream": "^0.0.7",
"material-design-icons-iconfont": "^6.7.0",
"moment": "~2.29.4",
"sass": "^1.66.1",
"sprintf-js": "^1.1.2",
"sass": "^1.68.0",
"sprintf-js": "^1.1.3",
"streamqueue": "~1.1.2",
"svg-morpheus": "^0.3.0",
"terser": "^5.19.3",
"terser": "^5.20.0",
"tinycolor2": "^1.6.0",
"weather-icons-lite": "^1.6.1"
},
Expand Down

0 comments on commit 44ef8c8

Please sign in to comment.