Skip to content

Commit

Permalink
Merge branch '3.3.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
tkleinke committed Nov 8, 2023
2 parents c8c28f1 + 78be2f6 commit 539a11f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ function convertComposite(resource: Resource, fieldName: string, field: Field) {

function convertCheckboxes(container: any, fieldName: string) {

if (!container[fieldName]) return;
container[fieldName] = container[fieldName].split(';');
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
</div>
<div *ngIf="isArray(value)">
<ul>
<li *ngFor="let label of getObjectLabels(value)" class="field-value">
{{label}}
</li>
<li *ngFor="let label of getObjectLabels(value)"
class="field-value"
[innerHTML]="label"></li>
</ul>
</div>
<div *ngIf="!isBoolean(value) && !isArray(value)"
Expand Down

0 comments on commit 539a11f

Please sign in to comment.