Skip to content

Commit 6bdd230

Browse files
committed
Revert "fix(VNavigationDrawer): don't calculate transform width if temporary"
This reverts commit be8babe.
1 parent d9e7211 commit 6bdd230

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/vuetify/src/components/VNavigationDrawer/VNavigationDrawer.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ export const VNavigationDrawer = genericComponent<VNavigationDrawerSlots>()({
177177

178178
return isDragging.value ? size * dragProgress.value : size
179179
})
180-
const elementSize = computed(() => ['top', 'bottom'].includes(props.location) || props.temporary ? 0 : width.value)
180+
const elementSize = computed(() => ['top', 'bottom'].includes(props.location) ? 0 : width.value)
181181
const { layoutItemStyles, layoutItemScrimStyles, layoutIsReady } = useLayoutItem({
182182
id: props.name,
183183
order: computed(() => parseInt(props.order, 10)),

0 commit comments

Comments
 (0)