DEV: Run prettier

Follow up to: 80f4b9e227
This commit is contained in:
Blake Erickson 2019-12-03 17:39:39 -07:00
parent 80f4b9e227
commit 8f708bd6e1

View File

@ -25,7 +25,13 @@ export default Component.extend({
didReceiveAttrs() {
this._super(...arguments);
this.set("circleIcon", iconHTML(this.icon, { class: this.class }).htmlSafe());
this.set("deliveryStatus", I18n.t(`admin.web_hooks.delivery_status.${this.get("status.name")}`));
this.set(
"circleIcon",
iconHTML(this.icon, { class: this.class }).htmlSafe()
);
this.set(
"deliveryStatus",
I18n.t(`admin.web_hooks.delivery_status.${this.get("status.name")}`)
);
}
});