Skip to content

Commit

Permalink
Merge pull request #907 from dnum-mi/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
laruiss committed Sep 1, 2024
2 parents 1c233d1 + dfae676 commit 057318e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/DsfrTable/DsfrTableCell.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const component = computed(() => {
return (typeof props.field === 'object' && props.field !== null && props.field.component) ? props.field.component : false
})
const isPrimitive = computed(() => {
return typeof ['string', 'number', 'boolean'].includes(typeof props.field)
return ['string', 'number', 'boolean'].includes(typeof props.field)
})
</script>

Expand Down

0 comments on commit 057318e

Please sign in to comment.