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