Correct name for instance default theme

This commit is contained in:
Felix Ableitner 2025-09-19 15:29:00 +02:00
parent 6fe1e26bff
commit c96d4547dd
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,14 @@
UPDATE
local_user
SET
theme = 'browser'
WHERE
theme = 'instance';
UPDATE
local_user
SET
theme = 'browser-compact'
WHERE
theme = 'instance-compact';

View file

@ -0,0 +1,14 @@
UPDATE
local_user
SET
theme = 'instance'
WHERE
theme = 'browser';
UPDATE
local_user
SET
theme = 'instance-compact'
WHERE
theme = 'browser-compact';