From 87c574559482a41764016551d22397e0faff591d Mon Sep 17 00:00:00 2001 From: si458 Date: Wed, 17 Jul 2024 12:43:24 +0100 Subject: [PATCH] fix invite code installation type display #4541 Signed-off-by: si458 --- views/default.handlebars | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/default.handlebars b/views/default.handlebars index e22b249d..429ceb54 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -14411,7 +14411,7 @@ var x = "Invitation codes can be used by anyone to join devices to this device group using the following public link:" + '

'; x += '
' + url + '

'; x += addHtmlValue("Invite Codes", currentMesh.invite.codes.join(', ')); - x += addHtmlValue("Installation Type", ["Background and interactive", "Background only", "Interactive only"][currentMesh.invite.flags & 3]); + x += addHtmlValue("Installation Type", ["Background and interactive", "Interactive only", "Background only"][currentMesh.invite.flags & 3]); setDialogMode(2, "Invite Codes", 1, null, x); } }