Skip to content

Commit 535b543

Browse files
ushahidleetuxpiper
authored andcommitted
Bug fixed (#1474)
1 parent 75d5a50 commit 535b543

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/web-mzima-client/src/app/post/post-edit/post-edit.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,7 @@ export class PostEditComponent extends BaseComponent implements OnInit, OnChange
678678
throw new Error(`Error updating caption: ${error.message}`);
679679
}
680680
} else {
681-
value.value = this.form.value[field.key]?.id || null;
681+
value.value = this.form.value[field.key]?.id || [];
682682
}
683683
break;
684684
case 'image':

0 commit comments

Comments
 (0)