We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67ff949 commit 4aea8a2Copy full SHA for 4aea8a2
src/containers/Nodes/Nodes.tsx
@@ -77,7 +77,7 @@ export const Nodes = ({path, type, className, additionalNodesInfo = {}}: NodesPr
77
const fetchNodes = useCallback(() => {
78
// For not DB entities we always use /compute endpoint instead of /nodes
79
// since /nodes can return data only for tenants
80
- if (path && (useNodesEndpoint || !isDatabaseEntityType(type))) {
+ if (path && (!useNodesEndpoint || !isDatabaseEntityType(type))) {
81
dispatch(getComputeNodes(path));
82
} else {
83
dispatch(getNodes({tenant: path}));
0 commit comments