From f4cf4c73b94b821fb8eb10345e85282579b55613 Mon Sep 17 00:00:00 2001 From: Jaakko Vanhala Date: Thu, 9 Apr 2026 21:18:58 +0300 Subject: [PATCH] =?UTF-8?q?Korjattu=20syntaksivirhe:=20ylim=C3=A4=C3=A4r?= =?UTF-8?q?=C3=A4inen=20});=20poistettu=20openInEditorista?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- network-poc/frontend/src/pages/index.astro | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/network-poc/frontend/src/pages/index.astro b/network-poc/frontend/src/pages/index.astro index d483985..78a52e9 100644 --- a/network-poc/frontend/src/pages/index.astro +++ b/network-poc/frontend/src/pages/index.astro @@ -580,8 +580,7 @@ import AgentBar from "../components/AgentBar.astro"; } document.getElementById('editor-file-list').innerHTML = Object.keys(files).map(n => `
${n}
`).join(''); document.getElementById('editor-tabs').innerHTML = Object.keys(files).map(n => `
${n}
`).join(''); - openFile(Object.keys(files)[0]); - }); + openFile(Object.keys(files)[0]); }; window.openFile = function(name) { if (!window._editorModels[name] || !window._monaco) return;