FIX: Descriptions were blank for uncategorized in hamburger menu

This commit is contained in:
Robin Ward 2020-01-03 11:10:06 -05:00
parent 9e3fc1111d
commit fe7bb62387
1 changed files with 4 additions and 0 deletions

View File

@ -43,6 +43,10 @@ class BasicCategorySerializer < ApplicationSerializer
object.uncategorized? ? I18n.t('uncategorized_category_name', locale: SiteSetting.default_locale) : object.name
end
def description_text
object.uncategorized? ? I18n.t('category.uncategorized_description', locale: SiteSetting.default_locale) : object.description_text
end
def description
object.uncategorized? ? I18n.t('category.uncategorized_description', locale: SiteSetting.default_locale) : object.description
end