aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2023-08-24 01:12:48 +0200
committerFerdinand Thiessen <opensource@fthiessen.de>2023-08-26 20:56:09 +0200
commit738c596977e74b5409bbc2e6f9235c6b01fd4313 (patch)
tree2322619dfcc104728a97833b180e2cbf38f73a88 /apps/settings
parentbd37607fc0782295125a0792d64d5da91e5c5258 (diff)
downloadnextcloud-server-738c596977e74b5409bbc2e6f9235c6b01fd4313.tar.gz
nextcloud-server-738c596977e74b5409bbc2e6f9235c6b01fd4313.zip
fix(apps): Adjust apps for FilePicker API change
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'apps/settings')
-rw-r--r--apps/settings/src/components/PersonalInfo/AvatarSection.vue1
1 files changed, 0 insertions, 1 deletions
diff --git a/apps/settings/src/components/PersonalInfo/AvatarSection.vue b/apps/settings/src/components/PersonalInfo/AvatarSection.vue
index d6fa8d52367..8c8ca0c8432 100644
--- a/apps/settings/src/components/PersonalInfo/AvatarSection.vue
+++ b/apps/settings/src/components/PersonalInfo/AvatarSection.vue
@@ -123,7 +123,6 @@ const VALID_MIME_TYPES = ['image/png', 'image/jpeg']
const picker = getFilePickerBuilder(t('settings', 'Choose your profile picture'))
.setMultiSelect(false)
.setMimeTypeFilter(VALID_MIME_TYPES)
- .setModal(true)
.setType(1)
.allowDirectories(false)
.build()