Skip to content

Commit

Permalink
fix coloring issue in error
Browse files Browse the repository at this point in the history
  • Loading branch information
AjayJagan committed Jul 19, 2023
1 parent 009a3e3 commit 24c2bd2
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,9 @@ const SwfCombinedEditor: React.FC<ISwfCombinedEditorProps & OUIAProps> = ({
let errorNode = null;
if (error) {
errorNode = nodes.filter(
(node) => node.nodeId === error.nodeDefinitionId
(node) =>
node.nodeId === error.nodeDefinitionId ||
node.definitionId === error.nodeDefinitionId
)[0];
combinedEditorChannelApi.notifications.kogitoSwfCombinedEditor_combinedEditorReady.subscribe(
() => {
Expand Down

0 comments on commit 24c2bd2

Please sign in to comment.