We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 596ae4c commit 2c317c4Copy full SHA for 2c317c4
1 file changed
src/webview/client/homescreen.ts
@@ -146,7 +146,7 @@ function renderMcpRows(
146
const statusClass = isConfigured ? "hs-ai-item-status--ok" : "hs-ai-item-status--none";
147
const statusText = isConfigured ? "configured" : "—";
148
return `<label class="hs-ai-item">
149
- <input type="checkbox" class="hs-ai-cb" data-mcp="${escapeHtml(s.key)}" checked ${isConfigured ? "disabled" : ""}>
+ <input type="checkbox" class="hs-ai-cb" data-mcp="${escapeHtml(s.key)}" ${isConfigured ? "checked disabled" : ""}>
150
<span class="hs-ai-item-name" title="${escapeHtml(s.description)}">${escapeHtml(s.label)}</span>
151
<span class="hs-ai-item-status ${statusClass}">${statusText}</span>
152
</label>`;
0 commit comments