13 lines
317 B
JavaScript
13 lines
317 B
JavaScript
import discourseComputed from "discourse-common/utils/decorators";
|
|
import Component from "@ember/component";
|
|
|
|
export default Component.extend({
|
|
tagName: "span",
|
|
classNames: ["group-info-details"],
|
|
|
|
@discourseComputed("group.full_name")
|
|
showFullName(fullName) {
|
|
return fullName && fullName.length;
|
|
}
|
|
});
|