1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Fix the problem that output labels of switch node sometimes disappear (#1664)

This commit is contained in:
Kazuki Nakanishi 2018-03-21 05:37:29 +09:00 committed by Nick O'Leary
parent 2845475e3f
commit fe289e62b5

View File

@ -199,7 +199,7 @@
rule.t = 'eq'; rule.t = 'eq';
} }
if (!opt.hasOwnProperty('i')) { if (!opt.hasOwnProperty('i')) {
opt._i = Math.floor((0x99999-0x10000)*Math.random()).toString(16); opt._i = Math.floor((0x99999-0x10000)*Math.random()).toString();
} }
container.css({ container.css({
overflow: 'hidden', overflow: 'hidden',