fix windows threadding ccm window bug

This commit is contained in:
2026-01-04 17:56:36 +08:00
parent afdff29637
commit 96ba44613d
4 changed files with 54 additions and 9 deletions

View File

@@ -56,7 +56,16 @@
Try again
{/if}
</button>
<button class="btn btn-outline" onclick={async () => invoke("open_client_config_manager")}>
<button
class="btn btn-outline"
onclick={async () => {
try {
await invoke("open_client_config_manager");
} catch (err) {
errorMessage = `Failed to open config manager: ${err}`;
}
}}
>
Advanced options
</button>
</div>