Skip to content

Commit

Permalink
Merge pull request #19224 from jeclrsg/hpcc-32846-queries-js-exception
Browse files Browse the repository at this point in the history
HPCC-32846 ECL Watch v9 fix JS exception on Queries list page
  • Loading branch information
GordonSmith authored Oct 24, 2024
2 parents 84deb99 + 058d198 commit 308d2d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esp/src/src-react/components/Queries.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export const Queries: React.FunctionComponent<QueriesProps> = ({
width: 16,
sortable: false,
formatter: (mixed, row) => {
const mixedStates = row.Clusters.ClusterQueryState[0]?.MixedNodeStates ?? false;
const mixedStates = row?.Clusters?.ClusterQueryState[0]?.MixedNodeStates ?? false;
if (mixedStates === true) {
return <Icon iconName="Error" />;
}
Expand Down

0 comments on commit 308d2d3

Please sign in to comment.