Run eslint with --fix

This commit is contained in:
awsr
2026-01-02 18:45:45 -08:00
parent ff542b743e
commit 74fee1aeb1
5 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ async function setupControlUI() {
const tabs = ['input', 'output', 'preview'];
for (const tab of tabs) {
const btn = gradioApp().getElementById(`control-${tab}-button`);
if (!btn) continue; // eslint-disable-line no-continue
if (!btn) continue;
btn.style.cursor = 'pointer';
btn.onclick = () => {
const t = gradioApp().getElementById(`control-tab-${tab}`);