Skip to content

Commit

Permalink
chore: fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
johnleider committed Apr 27, 2024
1 parent dd2cb96 commit 7f29061
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -136,7 +136,7 @@ export const VDataTableRow = genericComponent<new <T>(
>
{{
default: () => {
if (slots[slotName] && !mobile.value) return slots[slotName](slotProps)
if (slots[slotName] && !mobile.value) return slots[slotName]?.(slotProps)

if (column.key === 'data-table-select') {
return slots['item.data-table-select']?.(slotProps) ?? (
Expand Down

0 comments on commit 7f29061

Please sign in to comment.