Skip to content

Commit eb5bedb

Browse files
committed
fix: could not build front-office due to missing import
1 parent 4dee883 commit eb5bedb

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

apps/front-office/src/app/application/pages/form/form.module.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,20 @@ import { FormRoutingModule } from './form-routing.module';
44
import { FormComponent } from './form.component';
55
import { FormModule as SharedFormModule } from '@oort-front/shared';
66
import { ButtonModule } from '@oort-front/ui';
7+
import { TranslateModule } from '@ngx-translate/core';
78

89
/**
910
* Form page module.
1011
*/
1112
@NgModule({
1213
declarations: [FormComponent],
13-
imports: [CommonModule, FormRoutingModule, SharedFormModule, ButtonModule],
14+
imports: [
15+
CommonModule,
16+
FormRoutingModule,
17+
SharedFormModule,
18+
ButtonModule,
19+
TranslateModule,
20+
],
1421
exports: [FormComponent],
1522
})
1623
export class FormModule {}

0 commit comments

Comments
 (0)