File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -921,7 +921,7 @@ async def root(uid: str = Query(None)):
921921 const provider = getSelectedProvider();
922922 const label = agentProviderLabels[provider] || 'Agent';
923923 const input = document.getElementById('agentKey');
924- input.placeholder = `${{ label}} API key` ;
924+ input.placeholder = label + ' API key' ;
925925 input.value = agentProviderKeys[provider] || '';
926926 }}
927927
@@ -1017,7 +1017,7 @@ async def root(uid: str = Query(None)):
10171017 const status = entry.success ? 'OK' : 'ERR';
10181018 const msg = entry.message || '';
10191019 const url = entry.pr_url ? ' PR: ' + entry.pr_url : '';
1020- lines.push(`[${{ entry.provider}}] ${{ status}} ${{ msg}}${{ url}}` );
1020+ lines.push('[' + entry.provider + '] ' + status + ' ' + msg + url);
10211021 }}
10221022 logsEl.value = lines.join('\\ n');
10231023 if (!logs.length && data.message) {{
You can’t perform that action at this time.
0 commit comments