Merge pull request #7816 from artoscinote/ma_SCI_11004

Update mapping step selections once an item is selected [SCI-11004]
This commit is contained in:
Martin Artnik 2024-08-27 11:29:44 +02:00 committed by GitHub
commit bcd124df51
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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"