- update loadChildren entries
- remove nested i18n attributes
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
const routes: Routes = [
{ path: 'search',
- loadChildren: './search/acq-search.module#AcqSearchModule'
+ loadChildren: () =>
+ import('./search/acq-search.module').then(m => m.AcqSearchModule)
}
];
<div class="col-lg-5 form-group form-inline">
<label i18n>Search for records matching
<select class="form-inline ml-1 mr-1" id="acq-search-conjunction" [ngModelOptions]="{standalone: true}" [(ngModel)]="searchConjunction">
- <option i18n select value="all">all</option>
- <option i18n select value="any">any</option>
+ <option value="all">all</option>
+ <option value="any">any</option>
</select>
of the following terms:</label>
</div>
pathMatch: 'full',
}, {
path: 'acq',
- loadChildren : '@eg/staff/acq/routing.module#AcqRoutingModule'
+ loadChildren: () =>
+ import('@eg/staff/acq/routing.module').then(m => m.AcqRoutingModule)
}, {
path: 'booking',
loadChildren: () =>