From 91e2da5e74daaa20b118ba83a7d6f73585f0d5e7 Mon Sep 17 00:00:00 2001 From: Karthick Venkatesan Date: Thu, 13 Jul 2023 05:04:16 +0530 Subject: [PATCH] fix: Uncategorized article display error - HelpCenter-> Portal -> Uncategorised Article (#7504) Co-authored-by: Pranav Raj S --- .../api/v1/portals/articles/show.html.erb | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/app/views/public/api/v1/portals/articles/show.html.erb b/app/views/public/api/v1/portals/articles/show.html.erb index e3b560454..bc108901d 100644 --- a/app/views/public/api/v1/portals/articles/show.html.erb +++ b/app/views/public/api/v1/portals/articles/show.html.erb @@ -17,17 +17,21 @@
Home / - - <%= @article.category.name %> - + <% if @article.category %> + + <%= @article.category&.name %> + + <% else %> + Uncategorized + <% end %>

<%= @article.title %>