From 815aad100368cd622a5b2a0d2ae0c17508235d7e Mon Sep 17 00:00:00 2001 From: Suraj Shetty Date: Sun, 23 May 2021 13:31:54 +0530 Subject: [PATCH] fix: Rename email.bundle to erpnext_email.bundle to avoid override of frappe email styles --- erpnext/hooks.py | 2 +- .../scss/{email.bundle.scss => erpnext_email.bundle.scss} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename erpnext/public/scss/{email.bundle.scss => erpnext_email.bundle.scss} (100%) diff --git a/erpnext/hooks.py b/erpnext/hooks.py index 3024819d76..a1d37e2812 100644 --- a/erpnext/hooks.py +++ b/erpnext/hooks.py @@ -19,7 +19,7 @@ app_include_js = "erpnext.bundle.js" app_include_css = "erpnext.bundle.css" web_include_js = "erpnext-web.bundle.js" web_include_css = "erpnext-web.bundle.css" -email_css = "email.bundle.css" +email_css = "email_erpnext.bundle.css" doctype_js = { "Address": "public/js/address.js", diff --git a/erpnext/public/scss/email.bundle.scss b/erpnext/public/scss/erpnext_email.bundle.scss similarity index 100% rename from erpnext/public/scss/email.bundle.scss rename to erpnext/public/scss/erpnext_email.bundle.scss