diff options
author | Joas Schilling <coding@schilljs.com> | 2023-05-10 09:09:03 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2023-05-10 11:59:29 +0200 |
commit | c20fd9f91feb071e57f1c64026e737b16bcddec8 (patch) | |
tree | 3ed7ffb9cb037054d231f264b4db11725f01a4b0 /apps/workflowengine/src/components/Checks/RequestTime.vue | |
parent | 14cb58c0e5b4507704755a462a859c407173c21f (diff) | |
download | nextcloud-server-c20fd9f91feb071e57f1c64026e737b16bcddec8.tar.gz nextcloud-server-c20fd9f91feb071e57f1c64026e737b16bcddec8.zip |
fix(workflowengine): Fix multiple UI issues in workflow engine admin settings
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/workflowengine/src/components/Checks/RequestTime.vue')
-rw-r--r-- | apps/workflowengine/src/components/Checks/RequestTime.vue | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/apps/workflowengine/src/components/Checks/RequestTime.vue b/apps/workflowengine/src/components/Checks/RequestTime.vue index 79a91c0e544..36177e6ad65 100644 --- a/apps/workflowengine/src/components/Checks/RequestTime.vue +++ b/apps/workflowengine/src/components/Checks/RequestTime.vue @@ -12,15 +12,16 @@ <p v-if="!valid" class="invalid-hint"> {{ t('workflowengine', 'Please enter a valid time span') }} </p> - <NcMultiselect v-show="valid" + <NcSelect v-show="valid" v-model="newValue.timezone" + :clearable="false" :options="timezones" @input="update" /> </div> </template> <script> -import NcMultiselect from '@nextcloud/vue/dist/Components/NcMultiselect.js' +import NcSelect from '@nextcloud/vue/dist/Components/NcSelect.js' import moment from 'moment-timezone' import valueMixin from '../../mixins/valueMixin.js' @@ -28,7 +29,7 @@ const zones = moment.tz.names() export default { name: 'RequestTime', components: { - NcMultiselect, + NcSelect, }, mixins: [ valueMixin, @@ -112,6 +113,7 @@ export default { width: 50%; margin: 0; margin-bottom: 5px; + min-height: 48px; &.timeslot--start { margin-right: 5px; |