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