refs #1318 Add back button in client details view
testing/ogGui-multibranch/pipeline/head There was a failure building this commit
Details
testing/ogGui-multibranch/pipeline/head There was a failure building this commit
Details
parent
d469b93a96
commit
d689583b56
|
@ -257,5 +257,7 @@
|
|||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
.back-button {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
|
|
|
@ -12,6 +12,11 @@
|
|||
</mat-menu>
|
||||
</div>
|
||||
|
||||
<button mat-raised-button color="primary" (click)="navigateToGroups()" class="back-button">
|
||||
<mat-icon>arrow_back</mat-icon>
|
||||
{{ 'Back' | translate }}
|
||||
</button>
|
||||
|
||||
<div *ngIf="loading" class="loading-container">
|
||||
<mat-spinner></mat-spinner>
|
||||
</div>
|
||||
|
|
|
@ -123,6 +123,10 @@ export class ClientMainViewComponent implements OnInit {
|
|||
});
|
||||
}
|
||||
|
||||
navigateToGroups() {
|
||||
this.router.navigate(['/groups']);
|
||||
}
|
||||
|
||||
updateGeneralData() {
|
||||
this.generalData = [
|
||||
{ property: 'Nombre', value: this.clientData?.name || '' },
|
||||
|
|
Loading…
Reference in New Issue