We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b5a00ef + 55ab4b3 commit dfae676Copy full SHA for dfae676
src/components/DsfrTable/DsfrTableCell.vue
@@ -13,7 +13,7 @@ const component = computed(() => {
13
return (typeof props.field === 'object' && props.field !== null && props.field.component) ? props.field.component : false
14
})
15
const isPrimitive = computed(() => {
16
- return typeof ['string', 'number', 'boolean'].includes(typeof props.field)
+ return ['string', 'number', 'boolean'].includes(typeof props.field)
17
18
</script>
19
0 commit comments