Skip to content

Commit

Permalink
Only show raw validation error message in the error popup instead of …
Browse files Browse the repository at this point in the history
…prefixing it
  • Loading branch information
hlxid committed Feb 14, 2024
1 parent 3070962 commit 70d4f1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/dfdElements/nodeValidationResultUi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ export class DfdNodeValidationResultUI extends AbstractUIExtension {
}

const { message, fontAwesomeIcon } = node.validationResult;
this.validationParagraph.innerText = `Error: ${message}`;
this.validationParagraph.innerText = message;

if (fontAwesomeIcon) {
const icon = document.createElement("i");
Expand Down

0 comments on commit 70d4f1e

Please sign in to comment.