</eg-fm-record-editor>
<ng-template #fieldClassSelector let-fieldentries="fieldentries" let-selected="selectedEntry">
- <eg-combobox [allowFreeText]="true" [(ngModel)]="selected" required="true"
+ <eg-combobox [allowFreeText]="true" [ngModel]="selected" required="true"
[entries]="fieldentries" (onChange)="setClass($event)">
</eg-combobox>
</ng-template>
<ng-template #fieldSelector
let-entries="fields" let-selected="selectedEntry">
<eg-combobox [allowFreeText]="true" required="true"
- [entries]="fields" [(ngModel)]="selected"
+ [entries]="fields" [ngModel]="selected"
(ngModelChange)="setField($event)">
</eg-combobox>
</ng-template>
<eg-string #updateSuccessString text="Updated succeeded!" i18n-text></eg-string>
<eg-string #updateFailedString text="Updated failed." i18n-text></eg-string>
<eg-string #createSuccessString text="New Field Documentation Created!" i18n-text></eg-string>
-<eg-string #createFailedString text="Creation of new Field Documentation failed." i18n-text></eg-string>
\ No newline at end of file
+<eg-string #createFailedString text="Creation of new Field Documentation failed." i18n-text></eg-string>
import('./triggers/triggers.module').then(m => m.TriggersModule)
}, {
path: 'config/idl_field_doc',
- loadChildren: '@eg/staff/admin/local/field-documentation/field-documentation.module#FieldDocumentationModule'
+ loadChildren: () => import('./field-documentation/field-documentation.module')
+ .then(m => m.FieldDocumentationModule)
}, {
path: ':schema/:table',
component: BasicAdminPageComponent