frontend: update back button text in DisconnectedComponent and ErrorComponent to 'Accept'

This commit is contained in:
juancarmore 2025-07-21 12:00:42 +02:00
parent b69277ee04
commit b052eab59b
2 changed files with 2 additions and 2 deletions

View File

@ -102,7 +102,7 @@ export class DisconnectedComponent implements OnInit {
}
this.showBackButton = true;
this.backButtonText = isStandaloneMode && !redirection && isAdmin ? 'Back to Console' : 'Back';
this.backButtonText = isStandaloneMode && !redirection && isAdmin ? 'Back to Console' : 'Accept';
}
/**

View File

@ -113,7 +113,7 @@ export class ErrorComponent implements OnInit {
}
this.showBackButton = true;
this.backButtonText = isStandaloneMode && !redirection && isAdmin ? 'Back to Console' : 'Back';
this.backButtonText = isStandaloneMode && !redirection && isAdmin ? 'Back to Console' : 'Accept';
}
/**