[ACS-5645]removed unwanted space

This commit is contained in:
Yasa-Nataliya
2023-10-13 16:19:58 +05:30
committed by Anukriti Singh
parent 71bb551deb
commit a03aba0a2a
2 changed files with 2 additions and 2 deletions
@@ -38,7 +38,7 @@
<div class="adf-existing-categories-panel" *ngIf="existingCategoriesPanelVisible">
<ng-container *ngIf="isCRUDMode && (!existingCategoriesLoading || existingCategories)">
<span class="adf-create-category-label"
(click)="addCategory()"
(click)="addCategory()"
[hidden]="categoryNameControl.invalid || typing">
{{ 'CATEGORIES_MANAGEMENT.GENERIC_CREATE' | translate : { name: categoryNameControl.value } }}
</span>
@@ -308,7 +308,7 @@ describe('CategoriesManagementComponent', () => {
it('should have no required validator set for category control', () => {
expect(component.categoryNameControl.hasValidator(Validators.required)).toBeFalse();
});
it('should display validation error when searching for empty category', fakeAsync(() => {
typeCategory(' ');