From 94c31086f9ee53036b71618a15e5454f05967db6 Mon Sep 17 00:00:00 2001 From: Jordan Vidrine Date: Fri, 28 Mar 2025 09:04:40 -0500 Subject: [PATCH] title full width on mobile --- .../components/card/topic-status-column.gjs | 30 +++++++++---------- .../initializers/topic-list-columns.gjs | 3 -- 2 files changed, 15 insertions(+), 18 deletions(-) diff --git a/javascripts/discourse/components/card/topic-status-column.gjs b/javascripts/discourse/components/card/topic-status-column.gjs index 003fe10..0dc9254 100644 --- a/javascripts/discourse/components/card/topic-status-column.gjs +++ b/javascripts/discourse/components/card/topic-status-column.gjs @@ -7,23 +7,23 @@ export default class TopicStatusColumn extends Component { @service siteSettings; get badge() { - if (this.args.topic.is_hot) { - return { - icon: "fire", - text: "topic_hot", - className: "--hot", - }; - } + // if (this.args.topic.is_hot) { + // return { + // icon: "fire", + // text: "topic_hot", + // className: "--hot", + // }; + // } - if (this.args.topic.pinned) { - return { - icon: "thumbtack", - text: "topic_pinned", - className: "--pinned", - }; - } + // if (this.args.topic.pinned) { + return { + icon: "thumbtack", + text: "topic_pinned", + className: "--pinned", + }; + // } - return null; + // return null; }