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

Support setting title on typedInput option/ check

This commit is contained in:
Steve-Mcl 2020-06-01 11:25:42 +01:00
parent bae52613ab
commit 9128b12960

View File

@ -449,6 +449,9 @@
if (opt.label) {
op.text(opt.label);
}
if (opt.title) {
op.prop('title', opt.title)
}
if (opt.icon) {
if (opt.icon.indexOf("<") === 0) {
$(opt.icon).prependTo(op);