REFACTOR: removes useless conditional (#9677)

This commit is contained in:
Joffrey JAFFEUX 2020-05-07 16:34:49 +02:00 committed by GitHub
parent a078b086ba
commit 08e8ae82cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -8,7 +8,6 @@ export default Component.extend({
@discourseComputed("saving")
savingText(saving) {
if (saving) return I18n.t("saving");
return saving ? I18n.t("saving") : I18n.t("save");
},