mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ACS-7427] Process Services improvements and cleanup (#9664)
This commit is contained in:
@@ -16,17 +16,22 @@
|
||||
*/
|
||||
|
||||
import { Component, Input, ViewEncapsulation } from '@angular/core';
|
||||
import { ADF_COMMENTS_SERVICE } from '@alfresco/adf-core';
|
||||
import { ADF_COMMENTS_SERVICE, CommentsModule } from '@alfresco/adf-core';
|
||||
import { TaskCommentsService } from './services/task-comments.service';
|
||||
import { CommonModule } from '@angular/common';
|
||||
|
||||
@Component({
|
||||
selector: 'adf-task-comments',
|
||||
standalone: true,
|
||||
imports: [CommonModule, CommentsModule],
|
||||
templateUrl: './task-comments.component.html',
|
||||
encapsulation: ViewEncapsulation.None,
|
||||
providers: [{
|
||||
provide: ADF_COMMENTS_SERVICE,
|
||||
useClass: TaskCommentsService
|
||||
}]
|
||||
providers: [
|
||||
{
|
||||
provide: ADF_COMMENTS_SERVICE,
|
||||
useClass: TaskCommentsService
|
||||
}
|
||||
]
|
||||
})
|
||||
export class TaskCommentsComponent {
|
||||
/** The numeric ID of the task. */
|
||||
|
Reference in New Issue
Block a user