charat fix

This commit is contained in:
Kiran Surendran Pankan 2025-04-07 12:26:29 +05:30
parent 0ff5f053cd
commit 5b2e1fe7c6
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ provide('activeSection', activeSection)
<ul> <ul>
<li v-if="activeSection === 'dashboard'" class="active">Home</li> <li v-if="activeSection === 'dashboard'" class="active">Home</li>
<li v-else class="active"> <li v-else class="active">
{{ activeSection === 'saved' ? 'Saved Jobs' : activeSection.charAt(0).toUpperCase() + activeSection.slice(1) }} {{ activeSection === 'saved' ? 'Saved Jobs' : (activeSection ? activeSection.charAt(0).toUpperCase() + activeSection.slice(1) : '') }}
</li> </li>
</ul> </ul>
</nav> </nav>