Skip to content

Commit

Permalink
fix: fix error display
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron3S committed Feb 12, 2025
1 parent ebbbbac commit cbfd20e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,9 @@ export class ElementACLDialogComponent implements OnInit {
} else if (typeof error === 'object') {
if (error.detail) {
error = error.detail;
} else {
error = JSON.stringify(error);
}
error = JSON.stringify(error);
}
return error;
}
Expand Down

0 comments on commit cbfd20e

Please sign in to comment.