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