fix(waiting-room): add icon in list title EE-6687 (#11092)

pull/11809/head
matias-portainer 2024-05-09 19:24:04 -03:00 committed by GitHub
parent 06ef12d0ff
commit b4e829e8c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 0 deletions

View File

@ -1,3 +1,5 @@
import { Box } from 'lucide-react';
import { Datatable as GenericDatatable } from '@@/datatables';
import { createPersistedStore } from '@@/datatables/types';
import { useTableState } from '@@/datatables/useTableState';
@ -33,6 +35,7 @@ export function Datatable() {
columns={columns}
dataset={environments}
title="Edge Devices Waiting Room"
titleIcon={Box}
emptyContentLabel="No Edge Devices found"
renderTableActions={(selectedRows) => (
<TableActions selectedRows={selectedRows} />