From eb903033ab1902ed14dc5662890596a9bd7a47c4 Mon Sep 17 00:00:00 2001 From: sokumon Date: Mon, 12 Jan 2026 16:05:29 +0530 Subject: [PATCH] fix: revert setting desk theme to auto --- frappe/core/doctype/user/user.json | 4 ++-- frappe/core/doctype/user/user.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frappe/core/doctype/user/user.json b/frappe/core/doctype/user/user.json index 79f8d9aaea..d6f9c13cbe 100644 --- a/frappe/core/doctype/user/user.json +++ b/frappe/core/doctype/user/user.json @@ -637,7 +637,7 @@ "fieldname": "desk_theme", "fieldtype": "Select", "label": "Desk Theme", - "options": "Automatic\nLight\nDark" + "options": "Light\nDark\nAutomatic" }, { "fieldname": "module_profile", @@ -910,7 +910,7 @@ } ], "make_attachments_public": 1, - "modified": "2026-01-06 17:17:44.906709", + "modified": "2026-01-12 16:04:21.542524", "modified_by": "Administrator", "module": "Core", "name": "User", diff --git a/frappe/core/doctype/user/user.py b/frappe/core/doctype/user/user.py index 2cf28a8de3..5665ec1c84 100644 --- a/frappe/core/doctype/user/user.py +++ b/frappe/core/doctype/user/user.py @@ -85,7 +85,7 @@ class User(Document): default_app: DF.Literal[None] default_workspace: DF.Link | None defaults: DF.Table[DefaultValue] - desk_theme: DF.Literal["Automatic", "Light", "Dark"] + desk_theme: DF.Literal["Light", "Dark", "Automatic"] document_follow_frequency: DF.Literal["Hourly", "Daily", "Weekly"] document_follow_notify: DF.Check email: DF.Data