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>
|
||||
</span>
|
||||
</div>
|
||||
<p *ngIf="!isEmpty" class="adf-no-categories-message">
|
||||
<p *ngIf="!isCategoryEmpty" class="adf-no-categories-message">
|
||||
{{ noCategoriesMsg | translate }}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
+1
-1
@@ -185,7 +185,7 @@ export class CategoriesManagementComponent implements OnInit, OnDestroy {
|
||||
return this._categoryNameControl;
|
||||
}
|
||||
|
||||
get isEmpty(): boolean {
|
||||
get isCategoryEmpty(): boolean {
|
||||
return this.categories?.length > 0;
|
||||
}
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
</div>
|
||||
<p
|
||||
class="adf-no-tags-message"
|
||||
*ngIf="!isEmpty">
|
||||
*ngIf="!isTagsEmpty">
|
||||
{{ 'TAG.TAGS_CREATOR.NO_TAGS_CREATED' | translate }}
|
||||
</p>
|
||||
<div
|
||||
|
||||
@@ -223,7 +223,7 @@ export class TagsCreatorComponent implements OnInit, OnDestroy {
|
||||
return (!this.tagNameControlVisible && this.tags?.length > 0) || this.tagNameControlVisible;
|
||||
}
|
||||
|
||||
get isEmpty(): boolean {
|
||||
get isTagsEmpty(): boolean {
|
||||
return this.tags?.length > 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user