Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(VDatePicker): change title width in landscape mode #18395

Open
wants to merge 1 commit into
base: v2-stable
Choose a base branch
from

Conversation

vdkrasny
Copy link

@vdkrasny vdkrasny commented Oct 3, 2023

September, October, and November were not displayed correctly when the month picker is in landscape mode

fixes #9783

Description

Markup:

<template>
  <v-container>
    <v-date-picker v-model="picker" landscape type="month" />
  </v-container>
</template>

<script>
export default {
  data() {
    return {
      picker: new Date().toISOString().substr(0, 7)
    };
  }
};
</script>
September, October, and November were not displayed correctly when the month picker is in landscape mode

fixes vuetifyjs#9783
@vercel
Copy link

vercel bot commented Oct 3, 2023

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
vuetify-2 ✅ Ready (Inspect) Visit Preview 💬 Add feedback Oct 3, 2023 8:57pm
@MajesticPotatoe MajesticPotatoe added T: bug Functionality that does not work as intended/expected C: VDatePicker VDatePicker labels Oct 3, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C: VDatePicker VDatePicker T: bug Functionality that does not work as intended/expected
2 participants