mirror of
https://github.com/discourse/discourse.git
synced 2026-08-06 19:25:37 -05:00
Revert "FIX: title should attempt to fallback to label before name (#9739)"
This reverts commit c6bf552ca3.
This commit is contained in:
@@ -40,9 +40,7 @@ export default Component.extend(UtilsMixin, {
|
||||
}),
|
||||
|
||||
title: computed("item", function() {
|
||||
return (
|
||||
this._safeProperty("title", this.item) || this.label || this.name || ""
|
||||
);
|
||||
return this._safeProperty("title", this.item) || this.name || "";
|
||||
}),
|
||||
|
||||
label: computed("title", "name", function() {
|
||||
|
||||
Reference in New Issue
Block a user