From 15c336f48ac33da341ffc1efd6ebf1cc845f7d99 Mon Sep 17 00:00:00 2001 From: Cristian Scheid Date: Wed, 1 Jul 2026 07:41:10 -0300 Subject: [PATCH] fix: adjust file picker for background image to allow folder navigation Signed-off-by: Cristian Scheid --- apps/theming/src/components/UserSectionBackground.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/theming/src/components/UserSectionBackground.vue b/apps/theming/src/components/UserSectionBackground.vue index b06ea89ac90..c99997c554a 100644 --- a/apps/theming/src/components/UserSectionBackground.vue +++ b/apps/theming/src/components/UserSectionBackground.vue @@ -147,7 +147,7 @@ async function pickColor(color?: string) { async function pickFile() { await getFilePickerBuilder(t('theming', 'Select a background from your files')) .allowDirectories(false) - .setFilter((node) => node.mime.startsWith('image/')) + .setMimeTypeFilter(['image/*']) .setMultiSelect(false) .addButton({ label: t('theming', 'Select background'),