comparison client/src/components/importconfiguration/Import.vue @ 4914:5cdedfea740f fairway-marks-import

Layout fix for import configuration
author Thomas Junk <thomas.junk@intevation.de>
date Tue, 11 Feb 2020 09:30:27 +0100
parents 6a8d967baf1d
children 565da29060e7
comparison
equal deleted inserted replaced
4913:8c1a3d5e3962 4914:5cdedfea740f
4 <div v-if="mode === $options.MODES.LIST"> 4 <div v-if="mode === $options.MODES.LIST">
5 <UISpinnerOverlay v-if="loading" /> 5 <UISpinnerOverlay v-if="loading" />
6 <UITableHeader 6 <UITableHeader
7 :columns="[ 7 :columns="[
8 { id: 'id', title: `${idLabel}`, width: '60px;' }, 8 { id: 'id', title: `${idLabel}`, width: '60px;' },
9 { id: 'kind', title: `${typeLabel}`, width: '60px;' }, 9 { id: 'kind', title: `${typeLabel}`, width: '80px;' },
10 { id: 'user', title: `${ownerLabel}`, width: '250px' }, 10 { id: 'user', title: `${ownerLabel}`, width: '230px' },
11 { id: 'country', title: `${countryLabel}`, width: '80px' }, 11 { id: 'country', title: `${countryLabel}`, width: '80px' },
12 { id: 'config.cron', title: `${scheduleLabel}`, width: '100px' }, 12 { id: 'config.cron', title: `${scheduleLabel}`, width: '100px' },
13 { id: 'config.send-email', title: `${emailLabel}`, width: '70px' } 13 { id: 'config.send-email', title: `${emailLabel}`, width: '70px' }
14 ]" 14 ]"
15 /> 15 />
19 > 19 >
20 <template v-slot:row="{ item: schedule }"> 20 <template v-slot:row="{ item: schedule }">
21 <div style="width:60px" class="table-cell py-1"> 21 <div style="width:60px" class="table-cell py-1">
22 {{ schedule.id }} 22 {{ schedule.id }}
23 </div> 23 </div>
24 <div style="width:60px" class="table-cell py-1"> 24 <div style="width:80px" class="table-cell py-1">
25 {{ schedule.kind.toUpperCase() }} 25 {{ schedule.kind.toUpperCase() }}
26 </div> 26 </div>
27 <div style="width:250px;" class="table-cell py-1"> 27 <div style="width:230px;" class="table-cell py-1">
28 {{ schedule.user }} 28 {{ schedule.user }}
29 </div> 29 </div>
30 <div style="width:80px;" class="table-cell py-1"> 30 <div style="width:80px;" class="table-cell py-1">
31 {{ userCountries[schedule.user] }} 31 {{ userCountries[schedule.user] }}
32 </div> 32 </div>