charat fix
This commit is contained in:
parent
0ff5f053cd
commit
5b2e1fe7c6
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue