Skip to content

Commit

Permalink
feat(editor-content): apply format #29872
Browse files Browse the repository at this point in the history
  • Loading branch information
nicobytes committed Sep 26, 2024
1 parent 4cbbfbb commit b496933
Showing 1 changed file with 12 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,17 +73,21 @@ const FIELD_TYPES_COMPONENTS: Record<FIELD_TYPES, Type<unknown> | DotEditFieldTe
[FIELD_TYPES.TEXT]: DotEditContentTextFieldComponent,
[FIELD_TYPES.FILE]: {
component: DotEditContentFileFieldComponent,
providers: [{
provide: DotFileFieldUploadService,
useValue: {}
}],
providers: [
{
provide: DotFileFieldUploadService,
useValue: {}
}
]
},
[FIELD_TYPES.IMAGE]: {
component: DotEditContentFileFieldComponent,
providers: [{
provide: DotFileFieldUploadService,
useValue: {}
}],
providers: [
{
provide: DotFileFieldUploadService,
useValue: {}
}
]
},
[FIELD_TYPES.TEXTAREA]: DotEditContentTextAreaComponent,
[FIELD_TYPES.SELECT]: DotEditContentSelectFieldComponent,
Expand Down

0 comments on commit b496933

Please sign in to comment.