@@ -24,52 +24,52 @@ import {
24
24
(formControl?.dirty || options?.feedbackOnRender)">
25
25
26
26
<button *ngIf="showRemoveButton"
27
- class="close pull-right"
28
- type="button"
29
- (click)="removeItem()">
27
+ class="close pull-right"
28
+ type="button"
29
+ (click)="removeItem()">
30
30
<span aria-hidden="true">×</span>
31
31
<span class="sr-only">Close</span>
32
32
</button>
33
33
<div *ngIf="options?.messageLocation === 'top'">
34
34
<p *ngIf="options?.helpBlock"
35
- class="help-block"
36
- [innerHTML]="options?.helpBlock"></p>
35
+ class="help-block"
36
+ [innerHTML]="options?.helpBlock"></p>
37
37
</div>
38
38
39
39
<label *ngIf="options?.title && layoutNode?.type !== 'tab'"
40
- [attr.for]="'control' + layoutNode?._id"
41
- [class]="options?.labelHtmlClass"
42
- [class.sr-only]="options?.notitle"
43
- [innerHTML]="options?.title"></label>
40
+ [attr.for]="'control' + layoutNode?._id"
41
+ [class]="options?.labelHtmlClass"
42
+ [class.sr-only]="options?.notitle"
43
+ [innerHTML]="options?.title"></label>
44
44
<p *ngIf="layoutNode?.type === 'submit' && jsf?.formOptions?.fieldsRequired">
45
45
<strong class="text-danger">*</strong> = required fields
46
46
</p>
47
47
<div [class.input-group]="options?.fieldAddonLeft || options?.fieldAddonRight">
48
48
<span *ngIf="options?.fieldAddonLeft"
49
- class="input-group-addon"
50
- [innerHTML]="options?.fieldAddonLeft"></span>
49
+ class="input-group-addon"
50
+ [innerHTML]="options?.fieldAddonLeft"></span>
51
51
52
52
<select-widget-widget
53
53
[layoutNode]="widgetLayoutNode"
54
54
[dataIndex]="dataIndex"
55
55
[layoutIndex]="layoutIndex"></select-widget-widget>
56
56
57
57
<span *ngIf="options?.fieldAddonRight"
58
- class="input-group-addon"
59
- [innerHTML]="options?.fieldAddonRight"></span>
58
+ class="input-group-addon"
59
+ [innerHTML]="options?.fieldAddonRight"></span>
60
60
</div>
61
61
62
62
<span *ngIf="options?.feedback && options?.isInputWidget &&
63
63
!options?.fieldAddonRight && !layoutNode.arrayItem &&
64
64
(formControl?.dirty || options?.feedbackOnRender)"
65
- [class.glyphicon-ok]="options?.enableSuccessState && !formControl?.errors"
66
- [class.glyphicon-remove]="options?.enableErrorState && formControl?.errors"
67
- aria-hidden="true"
68
- class="form-control-feedback glyphicon"></span>
65
+ [class.glyphicon-ok]="options?.enableSuccessState && !formControl?.errors"
66
+ [class.glyphicon-remove]="options?.enableErrorState && formControl?.errors"
67
+ aria-hidden="true"
68
+ class="form-control-feedback glyphicon"></span>
69
69
<div *ngIf="options?.messageLocation !== 'top'">
70
70
<p *ngIf="options?.helpBlock"
71
- class="help-block"
72
- [innerHTML]="options?.helpBlock"></p>
71
+ class="help-block"
72
+ [innerHTML]="options?.helpBlock"></p>
73
73
</div>
74
74
</div>
75
75
0 commit comments