mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 07:49:41 +02:00
* refactor(edge/groups): load edge groups in selector fix(edge/stacks): remove double groups title * feat(edge): supply meta fields to edge script [EE-5043] * feat(edge): auto assign aeec envs to groups and tags [EE-5043] fix [EE-5043] fix(envs): fix global key test * fix(edge/groups): save group type * refactor(edge/devices): move loading of devices to table * refactor(tags): select paramter for query * feat(edge/devices): show meta fields * refactor(home): simplify filter * feat(edge/devices): filter by meta fields * refactor(edge/devices): break filter and loading hook
33 lines
837 B
TypeScript
33 lines
837 B
TypeScript
import { withLimitToBE } from '@/react/hooks/useLimitToBE';
|
|
|
|
import { InformationPanel } from '@@/InformationPanel';
|
|
import { TextTip } from '@@/Tip/TextTip';
|
|
import { PageHeader } from '@@/PageHeader';
|
|
|
|
import { Datatable } from './Datatable';
|
|
|
|
export default withLimitToBE(WaitingRoomView);
|
|
|
|
function WaitingRoomView() {
|
|
return (
|
|
<>
|
|
<PageHeader
|
|
title="Waiting Room"
|
|
breadcrumbs={[
|
|
{ label: 'Edge Devices', link: 'edge.devices' },
|
|
{ label: 'Waiting Room' },
|
|
]}
|
|
/>
|
|
|
|
<InformationPanel>
|
|
<TextTip color="blue">
|
|
Only environments generated from the AEEC script will appear here,
|
|
manually added environments and edge devices will bypass the waiting
|
|
room.
|
|
</TextTip>
|
|
</InformationPanel>
|
|
|
|
<Datatable />
|
|
</>
|
|
);
|
|
}
|