mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
Revert "FIX: title should attempt to fallback to label before name (#9739)"
This reverts commit c6bf552ca3
.
This commit is contained in:
parent
141f16eb6b
commit
5a073c6a0a
@ -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() {
|
||||
|
Loading…
Reference in New Issue
Block a user