blob: 0009cacf61ebfa33698ff3b3ac341682ad9cdfc5 [file] [log] [blame]
Nabin Hait10c61372021-04-13 15:46:01 +05301// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors
2// MIT License. See license.txt
3
4frappe.ui.form.on('Website Theme', {
5 validate(frm) {
6 let theme_scss = frm.doc.theme_scss;
7 if (theme_scss && theme_scss.includes('frappe/public/scss/website')
8 && !theme_scss.includes('erpnext/public/scss/website')
9 ) {
10 frm.set_value('theme_scss',
11 `${frm.doc.theme_scss}\n@import "erpnext/public/scss/website";`);
12 }
13 }
14});