Skip to content

Commit 076e17b

Browse files
committed
Fix label of property name
1 parent 6abb4ad commit 076e17b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arduino-cloud.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
$("#node-input-property").change(() => {
9696
const property_name = $("#node-input-property").find('option:selected').text();
9797
const property_value = $("#node-input-property").find('option:selected').val();
98-
if (property_name !== "" && property_value !== "" && property_value !== undefined) {
98+
if (property_name !== "" && property_value !== "" && property_value !== undefined && this.propname === "") {
9999
this.propname = property_name;
100100
$("#node-input-name").val(property_name);
101101
}

0 commit comments

Comments
 (0)