|
|
|
@ -26,7 +26,7 @@ import { |
|
|
|
import { MAT_DIALOG_DATA, MatDialog, MatDialogRef } from '@angular/material/dialog'; |
|
|
|
import { Store } from '@ngrx/store'; |
|
|
|
import { AppState } from '@core/core.state'; |
|
|
|
import { FormBuilder } from '@angular/forms'; |
|
|
|
import { FormBuilder, Validators } from '@angular/forms'; |
|
|
|
import { NEVER, Observable, of, switchMap } from 'rxjs'; |
|
|
|
import { Router } from '@angular/router'; |
|
|
|
import { DialogComponent } from '@shared/components/dialog.component'; |
|
|
|
@ -62,7 +62,7 @@ export class CalculatedFieldScriptTestDialogComponent extends DialogComponent<Ca |
|
|
|
@ViewChild('expressionContent', {static: true}) expressionContent: JsonContentComponent; |
|
|
|
|
|
|
|
calculatedFieldScriptTestFormGroup = this.fb.group({ |
|
|
|
expression: [], |
|
|
|
expression: ['', Validators.required], |
|
|
|
arguments: [], |
|
|
|
output: [] |
|
|
|
}); |
|
|
|
|