Skip to content

Commit 907c5c9

Browse files
committed
Fix 'no credentials available' message when the connection is not selected
1 parent 087f607 commit 907c5c9

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
@@ -58,7 +58,7 @@
5858
$("#node-input-name").val("");
5959
}
6060
}
61-
if ((this.connection !== connection && connection !== "_ADD_") || thing_id === "") {
61+
if ((this.connection !== connection || thing_id === "") && connection !== "_ADD_") {
6262
initThings(connection);
6363
}
6464
$("#node-input-thing").trigger("change");

0 commit comments

Comments
 (0)