From 6bdd23051ecf87f364c9c60ce0ba23a447078d81 Mon Sep 17 00:00:00 2001 From: John Leider Date: Tue, 16 Jul 2024 15:13:21 -0500 Subject: [PATCH] Revert "fix(VNavigationDrawer): don't calculate transform width if temporary" This reverts commit be8babe86dc0872bcf774a13d1ede93f47635497. --- .../src/components/VNavigationDrawer/VNavigationDrawer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vuetify/src/components/VNavigationDrawer/VNavigationDrawer.tsx b/packages/vuetify/src/components/VNavigationDrawer/VNavigationDrawer.tsx index 1d45358649f..ef077b7c8da 100644 --- a/packages/vuetify/src/components/VNavigationDrawer/VNavigationDrawer.tsx +++ b/packages/vuetify/src/components/VNavigationDrawer/VNavigationDrawer.tsx @@ -177,7 +177,7 @@ export const VNavigationDrawer = genericComponent()({ return isDragging.value ? size * dragProgress.value : size }) - const elementSize = computed(() => ['top', 'bottom'].includes(props.location) || props.temporary ? 0 : width.value) + const elementSize = computed(() => ['top', 'bottom'].includes(props.location) ? 0 : width.value) const { layoutItemStyles, layoutItemScrimStyles, layoutIsReady } = useLayoutItem({ id: props.name, order: computed(() => parseInt(props.order, 10)),