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 97660cb71f
commit a91023d83e

View File

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