diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2023-08-24 01:12:48 +0200 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2023-08-26 20:56:09 +0200 |
commit | 738c596977e74b5409bbc2e6f9235c6b01fd4313 (patch) | |
tree | 2322619dfcc104728a97833b180e2cbf38f73a88 /apps/settings | |
parent | bd37607fc0782295125a0792d64d5da91e5c5258 (diff) | |
download | nextcloud-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.vue | 1 |
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() |