charat fix
This commit is contained in:
parent
0ff5f053cd
commit
5b2e1fe7c6
|
|
@ -87,7 +87,7 @@ provide('activeSection', activeSection)
|
|||
<ul>
|
||||
<li v-if="activeSection === 'dashboard'" class="active">Home</li>
|
||||
<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>
|
||||
</ul>
|
||||
</nav>
|
||||
|
|
|
|||
Loading…
Reference in New Issue