changed dialog sizing
This commit is contained in:
parent
cf815b39f4
commit
062fa3a4ed
@ -122,12 +122,13 @@ export class CalculatedFieldTestArgumentsComponent extends PageComponent impleme
|
||||
openEditJSONDialog(group: FormGroup): void {
|
||||
this.dialog.open<JsonObjectEditDialogComponent, JsonObjectEditDialogData, CalculatedFieldArgumentEventValue>(JsonObjectEditDialogComponent, {
|
||||
disableClose: true,
|
||||
height: '65vh',
|
||||
height: '760px',
|
||||
minWidth: 'min(700px, 100%)',
|
||||
panelClass: ['tb-dialog', 'tb-fullscreen-dialog'],
|
||||
data: {
|
||||
jsonValue: group.value,
|
||||
required: true
|
||||
required: true,
|
||||
fillHeight: true
|
||||
}
|
||||
}).afterClosed()
|
||||
.pipe(filter(Boolean))
|
||||
|
||||
@ -35,7 +35,7 @@
|
||||
class="block h-full"
|
||||
label="{{ 'value.json-value' | translate }}"
|
||||
[jsonRequired]="required"
|
||||
[fillHeight]="false">
|
||||
[fillHeight]="data.fillHeight">
|
||||
</tb-json-object-edit>
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
@ -30,6 +30,7 @@ export interface JsonObjectEditDialogData {
|
||||
title?: string;
|
||||
saveLabel?: string;
|
||||
cancelLabel?: string;
|
||||
fillHeight?: boolean;
|
||||
}
|
||||
|
||||
@Component({
|
||||
|
||||
@ -15,7 +15,7 @@
|
||||
limitations under the License.
|
||||
|
||||
-->
|
||||
<div class="flex h-full flex-col" style="background: #fff;" [class.fill-height]="fillHeight"
|
||||
<div class="flex flex-col" style="background: #fff;" [class.fill-height]="fillHeight"
|
||||
tb-fullscreen
|
||||
[fullscreen]="fullscreen" (fullscreenChanged)="onFullscreen()">
|
||||
<div class="tb-json-object-toolbar flex flex-row items-center justify-start">
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user