Browse Source

fix(nc-gui): show only first 3 letters in top bar

pull/7611/head
DarkPhoenix2704 9 months ago
parent
commit
adae497e36
  1. 4
      packages/nc-gui/components/smartsheet/calendar/index.vue

4
packages/nc-gui/components/smartsheet/calendar/index.vue

@ -130,8 +130,8 @@ const headerText = computed(() => {
case 'day':
return dayjs(selectedDate.value).format('D MMMM YYYY')
case 'week':
return `${dayjs(selectedDateRange.value.start).format('D MMMM YYYY')} - ${dayjs(selectedDateRange.value.end).format(
'D MMMM YYYY',
return `${dayjs(selectedDateRange.value.start).format('D MMM YYYY')} - ${dayjs(selectedDateRange.value.end).format(
'D MMM YYYY',
)}`
case 'month':
return dayjs(selectedMonth.value).format('MMMM YYYY')

Loading…
Cancel
Save