From 0d1b93d5ecd24e81f35425647508bc855ec63fba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Skyler=20M=C3=A4ntysaari?= Date: Wed, 25 Jan 2023 01:34:57 +0200 Subject: [PATCH] feat(server/web): file-uploader needed changes. --- web/src/lib/utils/file-uploader.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/lib/utils/file-uploader.ts b/web/src/lib/utils/file-uploader.ts index cffcfa55b3..43d3b77701 100644 --- a/web/src/lib/utils/file-uploader.ts +++ b/web/src/lib/utils/file-uploader.ts @@ -49,7 +49,7 @@ export const fileUploadHandler = async ( if (files.length > 50) { notificationController.show({ type: NotificationType.Error, - message: `Cannot upload more than 50 files at a time - you are uploading ${files.length} files. + message: `Cannot upload more than 50 files at a time - you are uploading ${files.length} files. Please check out the bulk upload documentation if you need to upload more than 50 files.`, timeout: 10000, action: { type: 'link', target: 'https://immich.app/docs/features/bulk-upload' }