From a78e07dac842200a5ee818806148f046c4f5eaff Mon Sep 17 00:00:00 2001 From: Brandon Presley Date: Sun, 1 Jan 2023 13:43:55 +1300 Subject: [PATCH] Keep list menu open after selecting all Typically when you select all records it's because you want to operate on those records immediately. The only case this wouldn't be true is if you were scrolling, then selecting all a bunch of times. I think it's more likely someone just wants to select all, then delete. --- ListMenu.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/ListMenu.tsx b/ListMenu.tsx index f4d1100..7a21ea0 100644 --- a/ListMenu.tsx +++ b/ListMenu.tsx @@ -44,7 +44,6 @@ export default function ListMenu({ } const select = () => { - setShowMenu(false) onSelect() }