pinned requests should always be visible (#6814)

This commit is contained in:
James Gatz
2023-11-14 20:30:02 +01:00
committed by GitHub
parent 83436d2ec7
commit 52df4e3abf

View File

@@ -889,7 +889,7 @@ export const Debug: FC = () => {
<GridList
className="overflow-y-auto border-b border-t data-[empty]:py-0 py-[--padding-sm] data-[empty]:border-none border-solid border-[--hl-sm]"
items={collection.filter(item => !item.hidden && item.pinned)}
items={collection.filter(item => item.pinned)}
aria-label="Pinned Requests"
disallowEmptySelection
selectedKeys={[requestId]}