From a91023d83e65baab571e361987f9c3d902097317 Mon Sep 17 00:00:00 2001 From: busya Date: Sun, 5 Jul 2026 09:17:33 +0300 Subject: [PATCH] fix(frontend): fix Svelte prop shorthand in TranslationRunResult MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit {model.targetLanguages} is invalid shorthand — Svelte only supports bare identifiers, not property access. Changed to explicit targetLanguages={model.targetLanguages} --- .../src/lib/components/translate/TranslationRunResult.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/lib/components/translate/TranslationRunResult.svelte b/frontend/src/lib/components/translate/TranslationRunResult.svelte index 1b7be9a5..dd85e8af 100644 --- a/frontend/src/lib/components/translate/TranslationRunResult.svelte +++ b/frontend/src/lib/components/translate/TranslationRunResult.svelte @@ -448,8 +448,8 @@ model.showBulkReplace = false} onApplied={(_count) => { model.showBulkReplace = false; model.loadData(runId); onRefresh(); }} />