Hide multiple selection bar for notification requests when no notificion requests are loaded (#31540)

This commit is contained in:
Claire 2024-08-22 15:42:02 +02:00 committed by GitHub
parent 61d9704f6d
commit abe292b0ec
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -217,7 +217,9 @@ export const NotificationRequests = ({ multiColumn }) => {
multiColumn={multiColumn} multiColumn={multiColumn}
showBackButton showBackButton
appendContent={ appendContent={
<SelectRow selectionMode={selectionMode} setSelectionMode={setSelectionMode} selectAllChecked={selectAllChecked} toggleSelectAll={toggleSelectAll} selectedItems={checkedRequestIds} />} notificationRequests.size > 0 && (
<SelectRow selectionMode={selectionMode} setSelectionMode={setSelectionMode} selectAllChecked={selectAllChecked} toggleSelectAll={toggleSelectAll} selectedItems={checkedRequestIds} />
)}
> >
<ColumnSettings /> <ColumnSettings />
</ColumnHeader> </ColumnHeader>