diff --git a/app/assets/javascripts/discourse/templates/featured_topics.js.handlebars b/app/assets/javascripts/discourse/templates/featured_topics.js.handlebars index 8b6188320b..f8b34f1399 100644 --- a/app/assets/javascripts/discourse/templates/featured_topics.js.handlebars +++ b/app/assets/javascripts/discourse/templates/featured_topics.js.handlebars @@ -1,6 +1,6 @@
| + |
{{categoryLink this}}
@@ -9,8 +9,8 @@
{{/each}}
|
- {{i18n posts}} | -{{i18n age}} | +{{i18n posts}} | +{{i18n age}} | {{number posts_count}} | -{{{unboundAge created_at}}} | +{{number posts_count}} | +{{{unboundAge created_at}}} | {{/each}} diff --git a/app/assets/stylesheets/application/topic-list.css.scss b/app/assets/stylesheets/application/topic-list.css.scss index abb8c2e6c5..13baa6538d 100644 --- a/app/assets/stylesheets/application/topic-list.css.scss +++ b/app/assets/stylesheets/application/topic-list.css.scss @@ -181,6 +181,9 @@ .activity { width: 50px; } + .age { + width: 60px; + } } // Category list
|---|