mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FIX: Add topic status to flagged topics list
Previously at a glance it was impossible to tell if a topic was closed before digging deeper.
This commit is contained in:
parent
1f12a377fa
commit
8b3ddcf646
@ -16,7 +16,10 @@
|
||||
{{plugin-outlet name="flagged-topic-row" noTags=true args=(hash topic=ft.topic)}}
|
||||
|
||||
<td class="topic-title">
|
||||
<a href={{ft.topic.relative_url}} target="_blank">{{replace-emoji ft.topic.fancy_title}}</a>
|
||||
<div class='combined-title'>
|
||||
{{topic-status topic=ft.topic}}
|
||||
<a href={{ft.topic.relative_url}} target="_blank">{{replace-emoji ft.topic.fancy_title}}</a>
|
||||
</div>
|
||||
</td>
|
||||
<td class="flag-counts">
|
||||
{{#each ft.flag_counts as |fc|}}
|
||||
|
@ -191,7 +191,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
.flag-counts {
|
||||
div.flag-counts {
|
||||
display: inline-block;
|
||||
margin-right: 0.5em;
|
||||
|
||||
@ -204,9 +204,16 @@
|
||||
.flagged-topic {
|
||||
td.topic-title {
|
||||
width: 400px;
|
||||
|
||||
.combined-title {
|
||||
.d-icon {
|
||||
margin-right: 0.5em;
|
||||
}
|
||||
display: flex;
|
||||
}
|
||||
|
||||
a {
|
||||
width: 400px;
|
||||
display: inline-block;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
|
Loading…
Reference in New Issue
Block a user