mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-27 07:24:28 +08:00
Merge pull request #8394 from aignatov-bio/ai-sci-11491-fix-long-date-formats
Fix long dates formats [SCI-11491]
This commit is contained in:
commit
17698921ea
1 changed files with 3 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<div class='relative'>
|
||||
<template v-if="range">
|
||||
<div class="flex items-center gap-x-4 gap-y-2 flex-wrap lg:flex-nowrap">
|
||||
<div class="flex lg:items-center gap-x-4 gap-y-2 flex-col lg:flex-row">
|
||||
<DateTimePicker
|
||||
@change="updateFromDate"
|
||||
:mode="mode"
|
||||
|
@ -9,6 +9,7 @@
|
|||
:clearable="true"
|
||||
:disabled="fieldDisabled"
|
||||
:placeholder="fieldDisabled ? '' : i18n.t('forms.fields.from')"
|
||||
class="grow"
|
||||
:class="{'error': !validValue}"
|
||||
/>
|
||||
<span class="tw-hidden lg:block">-</span>
|
||||
|
@ -19,6 +20,7 @@
|
|||
:disabled="fieldDisabled"
|
||||
:clearable="true"
|
||||
:placeholder="fieldDisabled ? '' : i18n.t('forms.fields.to')"
|
||||
class="grow"
|
||||
:class="{'error': !validValue}"
|
||||
/>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Reference in a new issue