Skip to content

Commit

Permalink
revert back
Browse files Browse the repository at this point in the history
  • Loading branch information
michael.dill committed Oct 9, 2024
1 parent b436b5c commit 72204c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/novo-elements/src/elements/chips/RowChips.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export class NovoRowChipElement extends NovoChipElement {
*ngFor="let column of source.columns"
>
<ng-container *ngIf="column.editable">
<novo-checkbox *ngIf="column.type === 'checkbox'" [checked]="column.data(item)" [disabled]="!column.editable"></novo-checkbox>
<novo-checkbox *ngIf="column.type === 'checkbox'" [(ngModel)]="item.value[column.name]" [disabled]="!column.editable"></novo-checkbox>
<novo-field *ngIf="column.type !== 'checkbox'">
<input novoInput [type]="column.type || 'text'" [(ngModel)]="item.value[column.name]" />
</novo-field>
Expand Down

0 comments on commit 72204c6

Please sign in to comment.