mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 20:33:38 +08:00
UX: Show grandparent category badge in sticky header on desktop (#13184)
This commit is contained in:
parent
855e854cb8
commit
bcbb5b4dae
|
@ -126,6 +126,18 @@ export default createWidget("header-topic-info", {
|
|||
const parentCategory = category.get("parentCategory");
|
||||
const categories = [];
|
||||
if (parentCategory) {
|
||||
if (
|
||||
this.siteSettings.max_category_nesting > 2 &&
|
||||
!this.site.mobileView
|
||||
) {
|
||||
const grandParentCategory = parentCategory.get("parentCategory");
|
||||
if (grandParentCategory) {
|
||||
categories.push(
|
||||
this.attach("category-link", { category: grandParentCategory })
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
categories.push(
|
||||
this.attach("category-link", { category: parentCategory })
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue
Block a user