X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fshared%2Fshared-forms%2Fshared-form.module.ts;h=628affb56fd5af8ae225a148e3ce51cf2340fffb;hb=d12b40fb96d56786a96c06a621f3d8e0a0d24f4a;hp=81f076db6b0d5532cc09db1d2bd7edc8259d4823;hpb=56f47830758ff8e92abcfcc5f35d474ab12fe215;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/shared/shared-forms/shared-form.module.ts b/client/src/app/shared/shared-forms/shared-form.module.ts index 81f076db6..628affb56 100644 --- a/client/src/app/shared/shared-forms/shared-form.module.ts +++ b/client/src/app/shared/shared-forms/shared-form.module.ts @@ -1,4 +1,3 @@ - import { InputMaskModule } from 'primeng/inputmask' import { NgModule } from '@angular/core' import { FormsModule, ReactiveFormsModule } from '@angular/forms' @@ -7,6 +6,7 @@ import { SharedGlobalIconModule } from '../shared-icons' import { SharedMainModule } from '../shared-main/shared-main.module' import { AdvancedInputFilterComponent } from './advanced-input-filter.component' import { DynamicFormFieldComponent } from './dynamic-form-field.component' +import { FormReactiveService } from './form-reactive.service' import { FormValidatorService } from './form-validator.service' import { InputSwitchComponent } from './input-switch.component' import { InputTextComponent } from './input-text.component' @@ -96,7 +96,8 @@ import { TimestampInputComponent } from './timestamp-input.component' ], providers: [ - FormValidatorService + FormValidatorService, + FormReactiveService ] }) export class SharedFormModule { }