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:
@@ -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(); }}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user