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(VInput): add theme class #19602

Merged
merged 2 commits into from
Apr 23, 2024
Merged

Conversation

SonTT19
Copy link
Contributor

@SonTT19 SonTT19 commented Apr 13, 2024

Description

fixes #19598

Markup:

<template>
  <v-app>
    <v-container>
      <v-text-field
        v-model="msg"
        :error-messages="['Error text']"
        theme="dark"
      />
    </v-container>
  </v-app>
</template>

<script setup>
  import { ref } from 'vue'

  const msg = ref('Hello World!')
</script>

@KaelWD
Copy link
Member

KaelWD commented Apr 13, 2024

Shouldn't this just be on VInput?

@SonTT19 SonTT19 changed the title fix(VTextField): add theme class to text field fix(VInput): add theme class Apr 13, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C: VInput VInput T: bug Functionality that does not work as intended/expected
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Bug Report][3.5.15] v-text-field does not use given theme for error-messages
3 participants