mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
fix error on typedInput initialization
This commit is contained in:
parent
80873e4ea9
commit
7ca153abd0
@ -467,7 +467,9 @@
|
|||||||
var opt = this.typeMap[type];
|
var opt = this.typeMap[type];
|
||||||
if (opt && this.propertyType !== type) {
|
if (opt && this.propertyType !== type) {
|
||||||
this.propertyType = type;
|
this.propertyType = type;
|
||||||
|
if (this.typeField) {
|
||||||
this.typeField.val(type);
|
this.typeField.val(type);
|
||||||
|
}
|
||||||
this.selectLabel.empty();
|
this.selectLabel.empty();
|
||||||
var image;
|
var image;
|
||||||
if (opt.icon) {
|
if (opt.icon) {
|
||||||
@ -574,6 +576,7 @@
|
|||||||
}
|
}
|
||||||
this.elementDiv.show();
|
this.elementDiv.show();
|
||||||
}
|
}
|
||||||
|
if (this.optionExpandButton) {
|
||||||
if (opt.expand && typeof opt.expand === 'function') {
|
if (opt.expand && typeof opt.expand === 'function') {
|
||||||
this.optionExpandButton.show();
|
this.optionExpandButton.show();
|
||||||
this.optionExpandButton.off('click');
|
this.optionExpandButton.off('click');
|
||||||
@ -584,6 +587,7 @@
|
|||||||
} else {
|
} else {
|
||||||
this.optionExpandButton.hide();
|
this.optionExpandButton.hide();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
this.input.trigger('change',this.propertyType,this.value());
|
this.input.trigger('change',this.propertyType,this.value());
|
||||||
}
|
}
|
||||||
if (image) {
|
if (image) {
|
||||||
|
Loading…
Reference in New Issue
Block a user