File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
common/modules/eform-imported/pell
modules/cases/components/case-edit-switch Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -66,10 +66,9 @@ export const init = settings => {
6666 actionbar . appendChild ( button ) ;
6767 } ) ;
6868
69- if ( settings . defaultParagraphSeparator ) exec ( 'defaultParagraphSeparator' , settings . defaultParagraphSeparator )
69+ if ( settings . defaultParagraphSeparator ) { exec ( 'defaultParagraphSeparator' , settings . defaultParagraphSeparator ) ; }
7070 if ( settings . styleWithCSS ) { exec ( 'styleWithCSS' ) ; }
7171
72-
7372 return settings . element ;
7473} ;
7574
Original file line number Diff line number Diff line change 11< ng-container *ngIf ="dataItemList ">
22 < ng-container *ngFor ="let dataItem of dataItemList; let i = index ">
33 < div class ="card z-depth-2 mb-3 " style ="width: 100% " *ngIf ="dataItem.fieldType != 'SaveButton' ">
4- < div class ="card-header " *ngIf ="dataItem.fieldType != 'FieldContainer' && dataItem.fieldType != 'SaveButton' ">
4+ < div class ="card-header "
5+ [ngStyle] ="{'background-color': dataItem.color ? '#' + dataItem.color : ''} "
6+ *ngIf ="dataItem.fieldType != 'FieldContainer' && dataItem.fieldType != 'SaveButton' ">
57 {{dataItem.label}}
68 </ div >
79 < div class ="card-body ">
You can’t perform that action at this time.
0 commit comments