Skip to content

Commit

Permalink
fix: error page component impossibile nascondere codice errore
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoninoBonanno authored and astagi committed May 15, 2023
1 parent 4363f2e commit bf3448b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class ErrorPageComponent {
this.errorCode = data['errorCode']; // Get errorCode from route data
}
if (data['showErrorCode'] !== undefined) {
this.showBackButton = data['showErrorCode']; // Get showErrorCode from route data
this.showErrorCode = data['showErrorCode']; // Get showErrorCode from route data
}
if (!this.errorTitle && data['errorTitle']) {
this.errorTitle = data['errorTitle']; // Get errorTitle from route data
Expand Down

0 comments on commit bf3448b

Please sign in to comment.