From aff6f71c81fd7d501f7320da704eea7fa32f07ad Mon Sep 17 00:00:00 2001 From: Suraj Shetty Date: Mon, 1 Apr 2019 11:09:08 +0530 Subject: [PATCH] style: unindent chained .then --- frappe/public/js/frappe/views/components/Desktop.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frappe/public/js/frappe/views/components/Desktop.vue b/frappe/public/js/frappe/views/components/Desktop.vue index 240f3511a8..f950d04e79 100644 --- a/frappe/public/js/frappe/views/components/Desktop.vue +++ b/frappe/public/js/frappe/views/components/Desktop.vue @@ -118,8 +118,8 @@ export default { frappe.call('frappe.desk.moduleview.hide_modules_from_desktop', { modules: modules_to_hide }) - .then(r => r.message) - .then(hs => this.update_modules_with_home_settings(hs)); + .then(r => r.message) + .then(hs => this.update_modules_with_home_settings(hs)); } });