|
11 | 11 | :aria-label-combobox="t('tables', 'Select relation type')" |
12 | 12 | :disabled="column.id && column.id > 0" |
13 | 13 | required |
| 14 | + :clearable="false" |
14 | 15 | @input="onRelationTypeChange"> |
15 | 16 | <template #option="option"> |
16 | 17 | {{ option.label }} |
|
21 | 22 |
|
22 | 23 | <div class="row space-T"> |
23 | 24 | <div class="fix-col-4 title"> |
24 | | - {{ t('tables', 'Entity') }} |
| 25 | + {{ t('tables', 'Target') }} |
25 | 26 | </div> |
26 | 27 | <div class="fix-col-4"> |
27 | 28 | <NcSelect v-model="customSettings.targetId" |
|
30 | 31 | :aria-label-combobox="t('tables', 'Select target')" |
31 | 32 | :disabled="column.id && column.id > 0" |
32 | 33 | required |
| 34 | + :clearable="false" |
33 | 35 | @input="onTargetChange"> |
34 | 36 | <template #option="option"> |
35 | 37 | {{ option.emoji }} {{ option.label }} |
|
40 | 42 |
|
41 | 43 | <div class="row space-T"> |
42 | 44 | <div class="fix-col-4 title"> |
43 | | - {{ t('tables', 'Label column') }} |
| 45 | + {{ t('tables', 'Value selection label') }} |
44 | 46 | </div> |
45 | 47 | <div class="fix-col-4"> |
46 | 48 | <NcSelect v-model="customSettings.labelColumn" |
47 | 49 | :options="availableLabelColumns" |
48 | 50 | :reduce="(option) => option.id" |
49 | 51 | :loading="loadingColumns" |
50 | | - :aria-label-combobox="t('tables', 'Select label column')" |
| 52 | + :aria-label-combobox="t('tables', 'Select value selection label')" |
51 | 53 | required |
| 54 | + :clearable="false" |
52 | 55 | @input="onLabelColumnChange"> |
53 | 56 | <template #option="option"> |
54 | 57 | {{ option.label }} |
|
0 commit comments