feat(plugin): show game name and app ID in status section

This commit is contained in:
2026-06-28 21:30:58 +08:00
parent 234877cef2
commit f7c7ed7bbe
@@ -306,6 +306,14 @@ export default function MainPanel({
</div>
</PanelSectionRow>
)}
{session.gameName && (
<PanelSectionRow>
<div className={staticClasses.Text} style={{ fontSize: "13px", padding: "4px 0" }}>
<strong>Game:</strong> {session.gameName}
{session.appId && <> <strong>App ID:</strong> {session.appId}</>}
</div>
</PanelSectionRow>
)}
<PanelSectionRow>
<ButtonItem layout="below" onClick={handleTestKey} disabled={keyTestStatus === "testing"}>
{keyTestStatus === "testing" ? "Testing..." : "Test API Key"}