diff options
| author | stonedDiscord <Tukz@gmx.de> | 2023-12-21 01:32:19 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-21 01:32:19 +0100 |
| commit | 965e3e937065511fe9052ac687f54c1528a1e043 (patch) | |
| tree | 3d8f93d90dbe14cca16bd2045f1eb9e04853a75e /webAO/client | |
| parent | b288429cca94a461c8fa3d1936905d7e0e601d7f (diff) | |
| parent | c31047ccd6f57525485773cf57c3e97f42fe5aeb (diff) | |
Merge pull request #212 from Troid-Tech/searchable-pairing-partner
Use datalist in pairing to make it searchable
Diffstat (limited to 'webAO/client')
| -rw-r--r-- | webAO/client/handleCharacterInfo.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/webAO/client/handleCharacterInfo.ts b/webAO/client/handleCharacterInfo.ts index 9d74a8b..72dd727 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 = <HTMLSelectElement>( + const pair_select = <HTMLDataListElement>( document.getElementById("pair_select") ); - pair_select.add(new Option(safeTags(chargs[0]), String(charid))); + pair_select.appendChild(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 +} |
