fix invite code installation type display #4541
Signed-off-by: si458 <simonsmith5521@gmail.com>
si458 committed
Jul 17, 2024 at 12:43 UTC
87c574559482a41764016551d22397e0faff591d
1 file changed
+1
-1
views/default.handlebars
+1
-1
@@ -14411,7 +14411,7 @@
14411
var x = "Invitation codes can be used by anyone to join devices to this device group using the following public link:" + '<br /><br />';
14412
x += '<div style=width:100%;text-align:center><a rel="noreferrer noopener" target=_blank href="' + url + '">' + url + '</a></div><br />';
14413
x += addHtmlValue("Invite Codes", currentMesh.invite.codes.join(', '));
14414
- x += addHtmlValue("Installation Type", ["Background and interactive", "Background only", "Interactive only"][currentMesh.invite.flags & 3]);
14414
+ x += addHtmlValue("Installation Type", ["Background and interactive", "Interactive only", "Background only"][currentMesh.invite.flags & 3]);
14415
setDialogMode(2, "Invite Codes", 1, null, x);
14416
}
14417
}