From 2ce6e130c940e5f5c8f08cb30e6d341d84c892dd Mon Sep 17 00:00:00 2001 From: Jarrod Flesch <30633324+JarrodMFlesch@users.noreply.github.com> Date: Wed, 1 Oct 2025 14:28:40 -0400 Subject: [PATCH] fix(storage-uploadthing): hide key field from filters and columns (#14004) Fixes https://github.com/payloadcms/payload/issues/13992 Hides the key field from filters and columns for the uploadthing plugin. --- packages/storage-uploadthing/src/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/storage-uploadthing/src/index.ts b/packages/storage-uploadthing/src/index.ts index 54a139b01..01ca95630 100644 --- a/packages/storage-uploadthing/src/index.ts +++ b/packages/storage-uploadthing/src/index.ts @@ -145,6 +145,9 @@ function uploadthingInternal(options: UploadthingStorageOptions): Adapter { name: '_key', type: 'text', admin: { + disableBulkEdit: true, + disableListColumn: true, + disableListFilter: true, hidden: true, }, },