Skip to content

Commit

Permalink
Merge pull request #516 from noi-techpark/fix-event-document-cell-lan…
Browse files Browse the repository at this point in the history
…guage

Fix bug where ref instead of value is emitted
  • Loading branch information
RudiThoeni committed Jan 15, 2024
2 parents f2f297b + a25f93c commit 1ca9627
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const updateWithCurrentLanguage = ({ value }: { value?: FileEntry[] }) => {
const updatedFiles =
value?.map((file) => ({
...file,
language: currentLanguage,
language: currentLanguage.value,
})) || [];
emit('update', { prop: 'items', value: updatedFiles });
Expand Down

0 comments on commit 1ca9627

Please sign in to comment.