Browse Source

fixed debugging dialog height

pull/12650/head
mpetrov 2 years ago
parent
commit
a1b9e941e5
  1. 4
      ui-ngx/src/app/modules/home/components/calculated-fields/components/debug-dialog/calculated-field-debug-dialog.component.html
  2. 9
      ui-ngx/src/app/modules/home/components/calculated-fields/components/debug-dialog/calculated-field-debug-dialog.component.scss

4
ui-ngx/src/app/modules/home/components/calculated-fields/components/debug-dialog/calculated-field-debug-dialog.component.html

@ -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]"

9
ui-ngx/src/app/modules/home/components/calculated-fields/components/debug-dialog/calculated-field-debug-dialog.component.scss

@ -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;
}
}

Loading…
Cancel
Save