Skip to content

Commit 969418f

Browse files
author
Dave Conway-Jones
committed
Revert feedback block change
1 parent ed2bc83 commit 969418f

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
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.1.1: Maintenance Release
3+
4+
- Replace ui_control messages feedback block (found out why it was there...)
5+
26
### 3.1.0: Maintenance Release
37

48
**Fixes**

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: Tue Oct 26 2021 10:22:40 GMT+0100 (British Summer Time)
2+
# Time: Sat Nov 06 2021 14:08:36 GMT+0000 (Greenwich Mean Time)
33

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

29-
# hash: 7f5c93430a71279224e14c35c1bb22f97750bbb544fab68fa0ba18ee650e1748
29+
# hash: f1b244f0828b19c2a33e49b084fec0db1cb548db24b36db833e840bec675d173

dist/js/app.min.js

Lines changed: 1 addition & 1 deletion
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": "3.1.0",
3+
"version": "3.1.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
@@ -671,7 +671,7 @@ app.controller('MainController', ['$mdSidenav', '$window', 'UiEvents', '$locatio
671671
});
672672

673673
events.on('ui-control', function(msg) {
674-
// if (msg.hasOwnProperty("socketid") && (msg.socketid !== events.id) ) { return; }
674+
if (msg.hasOwnProperty("socketid") && (msg.socketid !== events.id) ) { return; }
675675
if (msg.hasOwnProperty("control")) { // if it's a request to modify a control
676676
var found = findControl(msg.id, main.menu);
677677
for (var property in msg.control) {

0 commit comments

Comments
 (0)