From 9422827df1cd293a37bdc3c58b0f920dbfec54ec Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Thu, 21 Dec 2023 01:40:38 +0100 Subject: Revert "Merge pull request #212 from Troid-Tech/searchable-pairing-partner" This reverts commit 965e3e937065511fe9052ac687f54c1528a1e043, reversing changes made to b288429cca94a461c8fa3d1936905d7e0e601d7f. --- webAO/client/handleCharacterInfo.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'webAO/client') diff --git a/webAO/client/handleCharacterInfo.ts b/webAO/client/handleCharacterInfo.ts index 72dd727..9d74a8b 100644 --- a/webAO/client/handleCharacterInfo.ts +++ b/webAO/client/handleCharacterInfo.ts @@ -51,10 +51,10 @@ export const handleCharacterInfo = async (chargs: string[], charid: number) => { document.getElementById("mute_select") ); mute_select.add(new Option(safeTags(chargs[0]), String(charid))); - const pair_select = ( + const pair_select = ( document.getElementById("pair_select") ); - pair_select.appendChild(new Option(safeTags(chargs[0]), String(charid))); + pair_select.add(new Option(safeTags(chargs[0]), String(charid))); // sometimes ini files lack important settings const default_options = { @@ -102,4 +102,4 @@ export const handleCharacterInfo = async (chargs: string[], charid: number) => { console.warn(`missing charid ${charid}`); img.style.display = "none"; } -} +} \ No newline at end of file -- cgit