Skip to content

Commit fe289e6

Browse files
Kazuki-Nakanishiknolleary
authored andcommitted
Fix the problem that output labels of switch node sometimes disappear (node-red#1664)
1 parent 2845475 commit fe289e6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

nodes/core/logic/10-switch.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ <h4>Handling message sequences</h4>
199199
rule.t = 'eq';
200200
}
201201
if (!opt.hasOwnProperty('i')) {
202-
opt._i = Math.floor((0x99999-0x10000)*Math.random()).toString(16);
202+
opt._i = Math.floor((0x99999-0x10000)*Math.random()).toString();
203203
}
204204
container.css({
205205
overflow: 'hidden',

0 commit comments

Comments
 (0)