mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
[ACS-5645]Modified the changes
This commit is contained in:
+1
-1
@@ -30,7 +30,7 @@
|
|||||||
</button>
|
</button>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<p *ngIf="!isEmpty" class="adf-no-categories-message">
|
<p *ngIf="!isCategoryEmpty" class="adf-no-categories-message">
|
||||||
{{ noCategoriesMsg | translate }}
|
{{ noCategoriesMsg | translate }}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
+1
-1
@@ -185,7 +185,7 @@ export class CategoriesManagementComponent implements OnInit, OnDestroy {
|
|||||||
return this._categoryNameControl;
|
return this._categoryNameControl;
|
||||||
}
|
}
|
||||||
|
|
||||||
get isEmpty(): boolean {
|
get isCategoryEmpty(): boolean {
|
||||||
return this.categories?.length > 0;
|
return this.categories?.length > 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<p
|
<p
|
||||||
class="adf-no-tags-message"
|
class="adf-no-tags-message"
|
||||||
*ngIf="!isEmpty">
|
*ngIf="!isTagsEmpty">
|
||||||
{{ 'TAG.TAGS_CREATOR.NO_TAGS_CREATED' | translate }}
|
{{ 'TAG.TAGS_CREATOR.NO_TAGS_CREATED' | translate }}
|
||||||
</p>
|
</p>
|
||||||
<div
|
<div
|
||||||
|
|||||||
@@ -223,7 +223,7 @@ export class TagsCreatorComponent implements OnInit, OnDestroy {
|
|||||||
return (!this.tagNameControlVisible && this.tags?.length > 0) || this.tagNameControlVisible;
|
return (!this.tagNameControlVisible && this.tags?.length > 0) || this.tagNameControlVisible;
|
||||||
}
|
}
|
||||||
|
|
||||||
get isEmpty(): boolean {
|
get isTagsEmpty(): boolean {
|
||||||
return this.tags?.length > 0;
|
return this.tags?.length > 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user