Update mapping step selections once an item is selected [SCI-11004]

This commit is contained in:
Martin Artnik 2024-08-27 11:20:46 +02:00
parent ff0a5e3b2a
commit 726b1973f1

View file

@ -44,11 +44,11 @@
{{ i18n.t('repositories.import_records.steps.step2.importedFileText') }} {{ params.file_name }}
<hr class="m-0 mt-6">
<div class="grid grid-cols-[3rem_14.5rem_1.5rem_14.5rem_5rem_14.5rem] px-2">
<div class="grid grid-cols-[3rem_14.5rem_1.5rem_14.5rem_5rem_14.5rem] px-2" :key="JSON.stringify(this.selectedItems)">
<div v-for="(column, key) in columnLabels" class="flex items-center px-2 py-2 font-bold">{{ column }}</div>
<template v-for="(item, index) in params.import_data.header" :key="item">
<template v-for="(item, index) in params.import_data.header" :key="index">
<MappingStepTableRow
:index="index"
:item="item"