mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
REFACTOR: removes useless conditional (#9677)
This commit is contained in:
parent
a078b086ba
commit
08e8ae82cc
@ -8,7 +8,6 @@ export default Component.extend({
|
|||||||
|
|
||||||
@discourseComputed("saving")
|
@discourseComputed("saving")
|
||||||
savingText(saving) {
|
savingText(saving) {
|
||||||
if (saving) return I18n.t("saving");
|
|
||||||
return saving ? I18n.t("saving") : I18n.t("save");
|
return saving ? I18n.t("saving") : I18n.t("save");
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user