Revert "FIX: title should attempt to fallback to label before name (#9739)"

This reverts commit c6bf552ca3.
This commit is contained in:
jjaffeux 2020-05-11 20:09:11 +02:00
parent 141f16eb6b
commit 5a073c6a0a

View File

@ -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() {