From 8f708bd6e17753a28afceaf33210c8f503f5b660 Mon Sep 17 00:00:00 2001 From: Blake Erickson Date: Tue, 3 Dec 2019 17:39:39 -0700 Subject: [PATCH] DEV: Run prettier Follow up to: 80f4b9e2279856eb34349636a50a3cc3967ffaf3 --- .../admin/components/admin-web-hook-status.js.es6 | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/app/assets/javascripts/admin/components/admin-web-hook-status.js.es6 b/app/assets/javascripts/admin/components/admin-web-hook-status.js.es6 index 30c2b9157e..0c24edc9d6 100644 --- a/app/assets/javascripts/admin/components/admin-web-hook-status.js.es6 +++ b/app/assets/javascripts/admin/components/admin-web-hook-status.js.es6 @@ -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")}`) + ); } });