Skip to content

Commit 6cefd46

Browse files
committed
fix(VPie): consistent avatar size in tooltip
1 parent 0e1dff0 commit 6cefd46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/vuetify/src/labs/VPie/VPie.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ export const VPie = genericComponent<VPieSlots>()({
293293

294294
const tooltipDefaults = {
295295
VAvatar: {
296-
size: typeof props.tooltip === 'object' ? props.tooltip.avatarSize : 28,
296+
size: typeof props.tooltip === 'object' ? (props.tooltip.avatarSize ?? 28) : 28,
297297
},
298298
}
299299

0 commit comments

Comments
 (0)