mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 05:19:39 +02:00
fix(stacks): show stack containers [EE-2359] (#6375)
Co-authored-by: LP B <xAt0mZ@users.noreply.github.com>
This commit is contained in:
parent
085762a1f4
commit
584a46d9d4
8 changed files with 52 additions and 65 deletions
|
@ -50,9 +50,10 @@ import { useColumns } from './columns';
|
|||
export interface ContainerTableProps {
|
||||
isAddActionVisible: boolean;
|
||||
dataset: DockerContainer[];
|
||||
onRefresh(): Promise<void>;
|
||||
onRefresh?(): Promise<void>;
|
||||
isHostColumnVisible: boolean;
|
||||
autoFocusSearch: boolean;
|
||||
tableKey?: string;
|
||||
}
|
||||
|
||||
export function ContainersDatatable({
|
||||
|
@ -150,7 +151,7 @@ export function ContainersDatatable({
|
|||
<TableSettingsMenu
|
||||
quickActions={<QuickActionsSettings actions={actions} />}
|
||||
>
|
||||
<ContainersDatatableSettings />
|
||||
<ContainersDatatableSettings isRefreshVisible={!!onRefresh} />
|
||||
</TableSettingsMenu>
|
||||
</TableTitleActions>
|
||||
</TableTitle>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue