refs #918 Remove toggle buttons for general info and disk usage
parent
2616b04aed
commit
e0704d61ef
|
@ -12,9 +12,6 @@
|
|||
<div class="client-info">
|
||||
<!-- Información General -->
|
||||
<div class="info-section">
|
||||
<button mat-icon-button (click)="toggleGeneralInfo()" aria-label="Minimizar/Expandir información general">
|
||||
<mat-icon>{{ isGeneralInfoVisible ? 'expand_less' : 'expand_more' }}</mat-icon>
|
||||
</button>
|
||||
<h2 *ngIf="isGeneralInfoVisible">Información General</h2>
|
||||
<p *ngIf="isGeneralInfoVisible"><strong>MAC:</strong> {{ clientData?.mac }}</p>
|
||||
<p *ngIf="isGeneralInfoVisible"><strong>Número de serie:</strong> {{ clientData?.serialNumber }}</p>
|
||||
|
@ -24,9 +21,6 @@
|
|||
|
||||
<!-- Uso del Espacio en Disco -->
|
||||
<div class="info-section">
|
||||
<button mat-icon-button (click)="toggleDiskUsage()" aria-label="Minimizar/Expandir uso de disco">
|
||||
<mat-icon>{{ isDiskUsageVisible ? 'expand_less' : 'expand_more' }}</mat-icon>
|
||||
</button>
|
||||
<h2 *ngIf="isDiskUsageVisible">Disco</h2>
|
||||
<div class="disk-usage" *ngIf="isDiskUsageVisible">
|
||||
<div class="chart-container">
|
||||
|
|
|
@ -40,14 +40,6 @@ export class ClientMainViewComponent implements OnInit {
|
|||
this.isPartitionAssistantVisible = !this.isPartitionAssistantVisible;
|
||||
}
|
||||
|
||||
toggleGeneralInfo() {
|
||||
this.isGeneralInfoVisible = !this.isGeneralInfoVisible;
|
||||
}
|
||||
|
||||
toggleDiskUsage() {
|
||||
this.isDiskUsageVisible = !this.isDiskUsageVisible;
|
||||
}
|
||||
|
||||
showBootImage() {
|
||||
this.isPartitionAssistantVisible = false;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue