mirror of
https://github.com/discourse/discourse.git
synced 2025-03-26 12:15:38 +08:00
UX: show group full name even when title is same. (#8437)
This commit is contained in:
parent
6005fadaca
commit
8237e0e001
@ -5,8 +5,8 @@ export default Component.extend({
|
||||
tagName: "span",
|
||||
classNames: ["group-info-details"],
|
||||
|
||||
@discourseComputed("group.full_name", "group.title")
|
||||
showFullName(fullName, title) {
|
||||
return fullName && fullName.length && fullName !== title;
|
||||
@discourseComputed("group.full_name")
|
||||
showFullName(fullName) {
|
||||
return fullName && fullName.length;
|
||||
}
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user