mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 15:29:42 +02:00
fix(docker/networks): load containers from target node [EE-5446] (#8928)
This commit is contained in:
parent
14fa60f6e6
commit
881fa01eb2
8 changed files with 97 additions and 73 deletions
|
@ -45,12 +45,9 @@ export function ContainersDatatable({
|
|||
const columns = useColumns(isHostColumnVisible, isGPUsColumnVisible);
|
||||
const tableState = useTableState(settingsStore, storageKey);
|
||||
|
||||
const containersQuery = useContainers(
|
||||
environment.Id,
|
||||
true,
|
||||
undefined,
|
||||
tableState.autoRefreshRate * 1000
|
||||
);
|
||||
const containersQuery = useContainers(environment.Id, {
|
||||
autoRefreshRate: tableState.autoRefreshRate * 1000,
|
||||
});
|
||||
|
||||
return (
|
||||
<RowProvider context={{ environment }}>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue