1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-24 15:59:41 +02:00

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

This commit is contained in:
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

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} />