fix(frontend): fix Svelte prop shorthand in TranslationRunResult

{model.targetLanguages} is invalid shorthand — Svelte only supports
bare identifiers, not property access. Changed to explicit
targetLanguages={model.targetLanguages}
This commit is contained in:
2026-07-05 09:17:33 +03:00
parent 87f124dfeb
commit 9e9d40d86e

View File

@@ -448,8 +448,8 @@
<BulkReplaceModal <BulkReplaceModal
show={model.showBulkReplace} show={model.showBulkReplace}
{runId} runId={runId}
{model.targetLanguages} targetLanguages={model.targetLanguages}
onClose={() => model.showBulkReplace = false} onClose={() => model.showBulkReplace = false}
onApplied={(_count) => { model.showBulkReplace = false; model.loadData(runId); onRefresh(); }} onApplied={(_count) => { model.showBulkReplace = false; model.loadData(runId); onRefresh(); }}
/> />