fix(workspace): Don't allow Welcome as default workspace

Co-authored-by: Shariq Ansari <30859809+shariquerik@users.noreply.github.com>
This commit is contained in:
Corentin Flr 2024-03-19 16:24:13 +01:00 committed by GitHub
parent 3ec47b0975
commit e3d00e9117
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,8 +3,8 @@ frappe.ui.form.on("User", {
frm.set_query("default_workspace", () => {
return {
filters: {
parent_page: ["is", "not set"],
for_user: ["in", [null, frappe.session.user]],
title: ["!=", "Welcome Workspace"],
},
};
});