From 74c566810123c50a8cb558af67d286af0ec857d1 Mon Sep 17 00:00:00 2001 From: DrMint <29893320+DrMint@users.noreply.github.com> Date: Sun, 12 May 2024 13:29:56 +0200 Subject: [PATCH] Hide select all button because of a bug with payload --- src/styles.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/styles.scss b/src/styles.scss index aac8fbc..3041394 100644 --- a/src/styles.scss +++ b/src/styles.scss @@ -149,3 +149,10 @@ html[data-theme="light"] { } } } + +// The Select all X entries button +// It can lead to accidental deletions. Bring it back when +// https://github.com/payloadcms/payload/issues/6326 is fixed. +button.list-selection__button { + display: none; +}