Skip to content

Commit

Permalink
[HugeGraph-Hubble-fe] Add error message (expand node) in deep. (#265)
Browse files Browse the repository at this point in the history
Co-authored-by: Linary <[email protected]>
  • Loading branch information
OshotOkill and Linary authored Nov 24, 2020
1 parent e14e30f commit 4f7446a
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,14 @@ const GraphQueryResult: React.FC<GraphQueryResult> = observer(({ hidden }) => {
dataAnalyzeStore.edgeWritingMappings
);
}

if (dataAnalyzeStore.requestStatus.expandGraphNode === 'failed') {
Message.error({
content: dataAnalyzeStore.errorInfo.expandGraphNode.message,
size: 'medium',
showCloseIcon: false
});
}
} else {
Message.error({
content: dataAnalyzeStore.errorInfo.expandGraphNode.message,
Expand Down

0 comments on commit 4f7446a

Please sign in to comment.