fixed debugging dialog height

This commit is contained in:
mpetrov 2025-02-11 18:14:38 +02:00
parent 934a8daa4e
commit a1b9e941e5
2 changed files with 5 additions and 8 deletions

View File

@ -15,7 +15,7 @@
limitations under the License. limitations under the License.
--> -->
<div class="debug-dialog-container w-screen max-w-5xl"> <div class="w-screen max-w-5xl">
<mat-toolbar color="primary"> <mat-toolbar color="primary">
<h2>{{ 'calculated-fields.debugging' | translate}}</h2> <h2>{{ 'calculated-fields.debugging' | translate}}</h2>
<span class="flex-1"></span> <span class="flex-1"></span>
@ -25,7 +25,7 @@
<mat-icon class="material-icons">close</mat-icon> <mat-icon class="material-icons">close</mat-icon>
</button> </button>
</mat-toolbar> </mat-toolbar>
<div mat-dialog-content class="tb-form-panel stroked debug-dialog-content h-full"> <div mat-dialog-content class="tb-form-panel stroked debug-dialog-content">
<tb-event-table <tb-event-table
[tenantId]="data.tenantId" [tenantId]="data.tenantId"
[debugEventTypes]="[debugEventTypes.DEBUG_CALCULATED_FIELD]" [debugEventTypes]="[debugEventTypes.DEBUG_CALCULATED_FIELD]"

View File

@ -14,11 +14,8 @@
* limitations under the License. * limitations under the License.
*/ */
:host { :host {
.debug-dialog-container {
height: 77vh;
.debug-dialog-content { .debug-dialog-content {
height: 65vh;
border-radius: 0; border-radius: 0;
} }
} }
}