Category Dropdown in Mobile View

我今天尝试让它始终可见,对我来说似乎有效,而且我没有注意到任何副作用:

api.modifyClass("component:bread-crumbs", {
  pluginId: "never-hidden-bread-crumbs",
  hidden: false,
});

hidden 最初是:

@discourseComputed("category")
hidden(category) {
  return this.site.mobileView && !category;
},

我更愿意仅在分类页面隐藏它

3 个赞