This commit is contained in:
Dan Percic 2024-06-17 21:27:16 +03:00
parent 0738d8c4ef
commit 0b64044f57
3 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
[ngStyle]="{
'padding-top': verticalPadding + 'px',
'padding-left': horizontalPadding + 'px',
'padding-right': horizontalPadding + 'px'
'padding-right': horizontalPadding + 'px',
}"
class="empty-state"
>

View File

@ -16,7 +16,7 @@
[ngTemplateOutletContext]="{
filter: filter,
filterGroup: primaryGroup,
atLeastOneIsExpandable: atLeastOneFilterIsExpandable$ | async
atLeastOneIsExpandable: atLeastOneFilterIsExpandable$ | async,
}"
[ngTemplateOutlet]="defaultFilterTemplate"
></ng-container>
@ -32,7 +32,7 @@
[ngTemplateOutletContext]="{
filter: filter,
filterGroup: secondaryGroup,
atLeastOneIsExpandable: atLeastOneSecondaryFilterIsExpandable$ | async
atLeastOneIsExpandable: atLeastOneSecondaryFilterIsExpandable$ | async,
}"
[ngTemplateOutlet]="defaultFilterTemplate"
></ng-container>

View File

@ -3,7 +3,7 @@
<div
[className]="'rectangle ' + config.color"
[ngStyle]="{
'background-color': config.color.includes('#') ? config.color : ''
'background-color': config.color.includes('#') ? config.color : '',
}"
></div>