Skip to content

Commit

Permalink
Fix error on publication select
Browse files Browse the repository at this point in the history
  • Loading branch information
bperel committed Dec 23, 2023
1 parent 523fa44 commit f3abb17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/web/src/components/PublicationSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ const { countryNames, publicationNames, publicationNamesFullCountries } =
storeToRefs(coa());
const countryNamesForPublication = $computed(
() =>
(countryNames &&
Object.entries(countryNames)
(countryNames.value &&
Object.entries(countryNames.value)
.map(([countrycode, countryName]) => ({
text: countryName,
value: countrycode,
Expand Down

0 comments on commit f3abb17

Please sign in to comment.