Fix channel alt text in user list to mention type
This commit is contained in:
parent
867fff33c0
commit
7107372a6f
@ -72,11 +72,7 @@ export default {
|
||||
}
|
||||
}
|
||||
|
||||
if (extra.length > 0) {
|
||||
return `${type}: ${this.channel.name} (${extra.join(", ")})`;
|
||||
}
|
||||
|
||||
return this.channel.name;
|
||||
return `${type}: ${this.channel.name} ${extra.length ? `(${extra.join(", ")})` : ""}`;
|
||||
},
|
||||
click() {
|
||||
if (this.isFiltering) {
|
||||
|
Loading…
Reference in New Issue
Block a user