diff options
Diffstat (limited to 'catalog-ui/src/app/ng2/pages/composition/palette/palette.component.html')
-rw-r--r-- | catalog-ui/src/app/ng2/pages/composition/palette/palette.component.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/catalog-ui/src/app/ng2/pages/composition/palette/palette.component.html b/catalog-ui/src/app/ng2/pages/composition/palette/palette.component.html index 89a12d01d4..080f83cfa1 100644 --- a/catalog-ui/src/app/ng2/pages/composition/palette/palette.component.html +++ b/catalog-ui/src/app/ng2/pages/composition/palette/palette.component.html @@ -8,7 +8,7 @@ <div class="palette-elements-list"> <sdc-loader [global]="false" name="palette-loader" testId="palette-loader" [active]="this.isPaletteLoading" [class.inactive]="!this.isPaletteLoading"></sdc-loader> <div *ngIf="numberOfElements === 0 && searchText" class="no-elements-found">No Elements Found</div> - <sdc-accordion *ngFor="let mapByCategory of paletteElements | keyValue; let first = first" [attr.data-tests-id]="'leftPalette.category.'+mapByCategory.key" [title]="mapByCategory.key" [css-class]="'palette-category'"> + <sdc-accordion *ngFor="let mapByCategory of paletteElements | keyValue; let first = first" [open]="this.openAccordion" [attr.data-tests-id]="'leftPalette.category.'+mapByCategory.key" [title]="mapByCategory.key" [css-class]="'palette-category'"> <div *ngFor="let mapBySubCategory of mapByCategory.value | keyValue"> <div class="palette-subcategory">{{mapBySubCategory.key}}</div> <ng-container *ngIf="!(isViewOnly$ | async)"> |