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.
-->
<div class="debug-dialog-container w-screen max-w-5xl">
<div class="w-screen max-w-5xl">
<mat-toolbar color="primary">
<h2>{{ 'calculated-fields.debugging' | translate}}</h2>
<span class="flex-1"></span>
@ -25,7 +25,7 @@
<mat-icon class="material-icons">close</mat-icon>
</button>
</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
[tenantId]="data.tenantId"
[debugEventTypes]="[debugEventTypes.DEBUG_CALCULATED_FIELD]"

View File

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