Skip to content

Commit

Permalink
Bug fixed (#1474)
Browse files Browse the repository at this point in the history
  • Loading branch information
ushahidlee authored and tuxpiper committed Nov 20, 2024
1 parent 75d5a50 commit 535b543
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ export class PostEditComponent extends BaseComponent implements OnInit, OnChange
throw new Error(`Error updating caption: ${error.message}`);
}
} else {
value.value = this.form.value[field.key]?.id || null;
value.value = this.form.value[field.key]?.id || [];
}
break;
case 'image':
Expand Down

0 comments on commit 535b543

Please sign in to comment.