Browse Source

fix: Made base title in breadcrumb capitalized

pull/6919/head
Muhammed Mustafa 1 year ago
parent
commit
6494dd7ecf
  1. 6
      packages/nc-gui/components/smartsheet/toolbar/ViewInfo.vue

6
packages/nc-gui/components/smartsheet/toolbar/ViewInfo.vue

@ -43,7 +43,9 @@ const openedBaseUrl = computed(() => {
> >
<NcTooltip class="!text-inherit"> <NcTooltip class="!text-inherit">
<template #title> <template #title>
{{ base?.title }} <span class="capitalize">
{{ base?.title }}
</span>
</template> </template>
<div class="flex flex-row items-center gap-x-1.5"> <div class="flex flex-row items-center gap-x-1.5">
<GeneralProjectIcon <GeneralProjectIcon
@ -59,7 +61,7 @@ const openedBaseUrl = computed(() => {
'!flex': isSharedBase && !isMobileMode, '!flex': isSharedBase && !isMobileMode,
}" }"
> >
<span class="truncate !text-inherit"> <span class="truncate !text-inherit capitalize">
{{ base?.title }} {{ base?.title }}
</span> </span>
</div> </div>

Loading…
Cancel
Save