We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9e7211 commit 6bdd230Copy full SHA for 6bdd230
packages/vuetify/src/components/VNavigationDrawer/VNavigationDrawer.tsx
@@ -177,7 +177,7 @@ export const VNavigationDrawer = genericComponent<VNavigationDrawerSlots>()({
177
178
return isDragging.value ? size * dragProgress.value : size
179
})
180
- const elementSize = computed(() => ['top', 'bottom'].includes(props.location) || props.temporary ? 0 : width.value)
+ const elementSize = computed(() => ['top', 'bottom'].includes(props.location) ? 0 : width.value)
181
const { layoutItemStyles, layoutItemScrimStyles, layoutIsReady } = useLayoutItem({
182
id: props.name,
183
order: computed(() => parseInt(props.order, 10)),
0 commit comments