mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
* Fixed attach widget menu (#5916)
This commit is contained in:
@@ -23,17 +23,22 @@ import {
|
|||||||
FormOutcomeEvent,
|
FormOutcomeEvent,
|
||||||
AuthenticationService,
|
AuthenticationService,
|
||||||
TranslationService,
|
TranslationService,
|
||||||
FormFieldModel
|
FormFieldModel,
|
||||||
|
FormRenderingService
|
||||||
} from '@alfresco/adf-core';
|
} from '@alfresco/adf-core';
|
||||||
import { TaskDetailsModel } from '../../models/task-details.model';
|
import { TaskDetailsModel } from '../../models/task-details.model';
|
||||||
import { TaskListService } from '../../services/tasklist.service';
|
import { TaskListService } from '../../services/tasklist.service';
|
||||||
import { UserRepresentation } from '@alfresco/js-api';
|
import { UserRepresentation } from '@alfresco/js-api';
|
||||||
import { Observable } from 'rxjs';
|
import { Observable } from 'rxjs';
|
||||||
|
import { ProcessFormRenderingService } from '../../../form/process-form-rendering.service';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'adf-task-form',
|
selector: 'adf-task-form',
|
||||||
templateUrl: './task-form.component.html',
|
templateUrl: './task-form.component.html',
|
||||||
styleUrls: ['./task-form.component.scss']
|
styleUrls: ['./task-form.component.scss'],
|
||||||
|
providers: [
|
||||||
|
{ provide: FormRenderingService, useClass: ProcessFormRenderingService }
|
||||||
|
]
|
||||||
})
|
})
|
||||||
export class TaskFormComponent implements OnInit {
|
export class TaskFormComponent implements OnInit {
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user