fix: Uncategorized article display error - HelpCenter-> Portal -> Uncategorised Article (#7504)
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
This commit is contained in:
committed by
GitHub
parent
21691f2407
commit
91e2da5e74
@@ -17,17 +17,21 @@
|
|||||||
<div>
|
<div>
|
||||||
<a
|
<a
|
||||||
class="text-slate-700 hover:underline leading-8 text-sm font-semibold"
|
class="text-slate-700 hover:underline leading-8 text-sm font-semibold"
|
||||||
href="/hc/<%= @portal.slug %>/<%= @article.category.locale %>"
|
href="/hc/<%= @portal.slug %>/<%= @article.category&.locale %>"
|
||||||
>
|
>
|
||||||
Home
|
Home
|
||||||
</a>
|
</a>
|
||||||
<span class="text-xs text-slate-600 px-1">/</span>
|
<span class="text-xs text-slate-600 px-1">/</span>
|
||||||
<a
|
<% if @article.category %>
|
||||||
class="text-slate-700 hover:underline leading-8 text-sm font-semibold"
|
<a
|
||||||
href="/hc/<%= @portal.slug %>/<%= @article.category.locale %>/categories/<%= @article.category.slug %>"
|
class="text-slate-700 hover:underline leading-8 text-sm font-semibold"
|
||||||
>
|
href="/hc/<%= @portal.slug %>/<%= @article.category.locale %>/categories/<%= @article.category.slug %>"
|
||||||
<%= @article.category.name %>
|
>
|
||||||
</a>
|
<%= @article.category&.name %>
|
||||||
|
</a>
|
||||||
|
<% else %>
|
||||||
|
<span class="text-slate-700 leading-8 text-sm font-semibold" > Uncategorized </span>
|
||||||
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
<h1 class="text-3xl font-semibold md:tracking-normal leading-snug md:text-4xl text-slate-900">
|
<h1 class="text-3xl font-semibold md:tracking-normal leading-snug md:text-4xl text-slate-900">
|
||||||
<%= @article.title %>
|
<%= @article.title %>
|
||||||
|
|||||||
Reference in New Issue
Block a user