Update branch for ADF 37482 and JS-API 5.3.0-477 [ci:force] (#2855)

* [ci:force][auto-commit] Update @alfresco/adf-extensions to 6.0.0-A.1-37480 for branch: update-alfresco-dependencies originated from @alfresco/adf-extensions PR: 37482

* [ci:force][auto-commit] Update @alfresco/adf-core to 6.0.0-A.1-37480 for branch: update-alfresco-dependencies originated from @alfresco/adf-core PR: 37482

* [ci:force][auto-commit] Update @alfresco/adf-content-services to 6.0.0-A.1-37480 for branch: update-alfresco-dependencies originated from @alfresco/adf-content-services PR: 37482

* [ci:force][auto-commit] Update @alfresco/adf-cli to 6.0.0-A.1-37480 for branch: update-alfresco-dependencies originated from @alfresco/adf-cli PR: 37482

* [ci:force][auto-commit] Update @alfresco/adf-testing to 6.0.0-A.1-37480 for branch: update-alfresco-dependencies originated from @alfresco/adf-testing PR: 37482

* Cherry-pick from 2810bca153 - Fix BC: rename adf-comments to adf-node-comments

Co-authored-by: Amedeo Lepore <amedeo.lepore@hyland.com>
This commit is contained in:
Alfresco Build
2022-12-20 15:20:45 +01:00
committed by GitHub
parent 5133a3e3c9
commit c87662900e
4 changed files with 23 additions and 23 deletions

View File

@@ -28,7 +28,7 @@ import { ComponentFixture, TestBed } from '@angular/core/testing';
import { AppTestingModule } from '../../../testing/app-testing.module';
import { NodePermissionService } from '@alfresco/aca-shared';
import { Node } from '@alfresco/js-api';
import { CommentsModule } from '@alfresco/adf-core';
import { NodeCommentsModule } from '@alfresco/adf-content-services';
describe('CommentsTabComponent', () => {
let component: CommentsTabComponent;
@@ -38,7 +38,7 @@ describe('CommentsTabComponent', () => {
beforeEach(() => {
TestBed.configureTestingModule({
imports: [AppTestingModule, CommentsModule],
imports: [AppTestingModule, NodeCommentsModule],
declarations: [CommentsTabComponent]
});

View File

@@ -29,7 +29,7 @@ import { NodePermissionService, isLocked } from '@alfresco/aca-shared';
@Component({
selector: 'app-comments-tab',
template: `<mat-card><adf-comments [readOnly]="!canUpdateNode" [nodeId]="node?.id"></adf-comments></mat-card>`
template: `<mat-card><adf-node-comments [readOnly]="!canUpdateNode" [nodeId]="node?.id"></adf-node-comments></mat-card>`
})
export class CommentsTabComponent {
@Input()