charat fix
This commit is contained in:
+1
-1
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user