blob: 9c2b8cd11b9755bfc09a10f06a4714380e4c5ef8 [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
Ankush Menatec74a5e2024-03-10 19:45:40 +05304frappe.ui.form.on("Website Theme", {
Nabin Hait10c61372021-04-13 15:46:01 +05305 validate(frm) {
6 let theme_scss = frm.doc.theme_scss;
Ankush Menatec74a5e2024-03-10 19:45:40 +05307 if (
8 theme_scss &&
9 theme_scss.includes("frappe/public/scss/website") &&
10 !theme_scss.includes("erpnext/public/scss/website")
Nabin Hait10c61372021-04-13 15:46:01 +053011 ) {
Ankush Menatec74a5e2024-03-10 19:45:40 +053012 frm.set_value("theme_scss", `${frm.doc.theme_scss}\n@import "erpnext/public/scss/website";`);
Nabin Hait10c61372021-04-13 15:46:01 +053013 }
Ankush Menatec74a5e2024-03-10 19:45:40 +053014 },
Nabin Hait10c61372021-04-13 15:46:01 +053015});