1
0
forked from test/crm

chore: Public view spelling and make it uppercase through css

This commit is contained in:
Shariq Ansari 2024-01-29 12:40:46 +05:30
parent e199eaed58
commit fb64909f18

View File

@ -33,7 +33,9 @@
class="h-4 text-gray-900 transition-all duration-300 ease-in-out"
:class="{ 'rotate-90': opened }"
/>
{{ view.name }}
<span class="uppercase">
{{ view.name }}
</span>
</div>
</template>
<nav class="flex flex-col">
@ -134,12 +136,12 @@ const allViews = computed(() => {
views: links,
},
{
name: 'PULIC VIEWS',
name: 'Public views',
opened: true,
views: parseView(getPublicViews()),
},
{
name: 'PINNED VIEWS',
name: 'Pinned views',
opened: true,
views: parseView(getPinnedViews()),
},