blob: 9662f78538b80dac0a76614627a7254a57de7b47 [file] [log] [blame]
Faris Ansari5f8b3582019-03-19 11:48:32 +05301// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors
2// MIT License. See license.txt
3
4frappe.ui.form.on('Website Theme', {
Faris Ansari8e99aaf2019-06-14 20:06:54 +05305 validate(frm) {
6 let theme_scss = frm.doc.theme_scss;
Saurabha14618e2020-07-30 17:22:29 +05307 if (theme_scss && (theme_scss.includes('frappe/public/scss/website')
8 && !theme_scss.includes('erpnext/public/scss/website'))
Faris Ansari5f8b3582019-03-19 11:48:32 +05309 ) {
Faris Ansari8e99aaf2019-06-14 20:06:54 +053010 frm.set_value('theme_scss',
11 `${frm.doc.theme_scss}\n@import "erpnext/public/scss/website";`);
Faris Ansari5f8b3582019-03-19 11:48:32 +053012 }
13 }
14});