diff options
Diffstat (limited to 'core/src/components')
-rw-r--r-- | core/src/components/GlobalSearch/CustomDateRangeModal.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/components/GlobalSearch/CustomDateRangeModal.vue b/core/src/components/GlobalSearch/CustomDateRangeModal.vue index aca37b3c71b..8cbcc650090 100644 --- a/core/src/components/GlobalSearch/CustomDateRangeModal.vue +++ b/core/src/components/GlobalSearch/CustomDateRangeModal.vue @@ -14,12 +14,12 @@ <NcDateTimePicker :id="'globalsearch-custom-date-range-start'" v-model="dateFilter.startFrom" :max="new Date()" - :label="t('core', 'Pick start date')" + :label="t('core', 'Pick a start date')" type="date" /> <NcDateTimePicker :id="'globalsearch-custom-date-range-end'" v-model="dateFilter.endAt" :max="new Date()" - :label="t('core', 'Pick end date')" + :label="t('core', 'Pick an end date')" type="date" /> </div> <NcButton @click="applyCustomRange"> |