Skip to content

Commit

Permalink
fix(catalogue): Year 0 harmonisation matrix check mark is displayed w…
Browse files Browse the repository at this point in the history
…hile there is no data for this mapping. (#4550)
  • Loading branch information
mswertz authored Dec 15, 2024
1 parent 2abc93d commit 0045eec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const repeats = computed(() => {
variable.mappings?.find(
(m) =>
m.source.id === cell.value.column &&
m.repeats.includes('' + cell.value.row)
m.repeats.split(',').includes('' + cell.value.row)
)?.match.name || 'unmapped'
"
/>
Expand Down

0 comments on commit 0045eec

Please sign in to comment.