Skip to content

Commit

Permalink
Merge pull request #1225 from jumpserver/pr@dev@fix_error_display
Browse files Browse the repository at this point in the history
fix: fix error display
  • Loading branch information
Aaron3S authored Feb 12, 2025
2 parents ebbbbac + cbfd20e commit 61feea3
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 61feea3

Please sign in to comment.