Skip to content

Commit dfae676

Browse files
authored
Merge pull request #906 from dnum-mi/hotfix/table-cell-broken
fix: 🚑 broken TableCell
2 parents b5a00ef + 55ab4b3 commit dfae676

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/DsfrTable/DsfrTableCell.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const component = computed(() => {
1313
return (typeof props.field === 'object' && props.field !== null && props.field.component) ? props.field.component : false
1414
})
1515
const isPrimitive = computed(() => {
16-
return typeof ['string', 'number', 'boolean'].includes(typeof props.field)
16+
return ['string', 'number', 'boolean'].includes(typeof props.field)
1717
})
1818
</script>
1919

0 commit comments

Comments
 (0)