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 display password #3662

Merged
merged 2 commits into from
Jul 26, 2024
Merged

fix display password #3662

merged 2 commits into from
Jul 26, 2024

Conversation

DavidFyon
Copy link
Contributor

@DavidFyon DavidFyon commented Jul 26, 2024

Description

Fix password display

Playground

<template>
	<v-col cols="3">
		<PasswordField v-model="password"></PasswordField>
		<PasswordField v-model="password" outlined></PasswordField>
		<PhoneField />
	</v-col>
</template>

<script lang="ts">
import { defineComponent } from "vue";
import PasswordField from "@/patterns/PasswordField/PasswordField.vue"
import PhoneField from "@/patterns/PhoneField/PhoneField.vue"

export default defineComponent({
	components: {
		PasswordField,
		PhoneField
	},
	data() {
		return {
			password: null as string | null
		}
	},
})
</script>

Type de changement

  • Correction de bug

Checklist

  • Ma Pull Request pointe vers la bonne branche
  • Mon code suit le style de code du projet
  • J'ai effectué une review de mon propre code
  • J'ai commenté mon code, en particulier dans les parties difficiles à comprendre
  • J'ai apporté les modifications correspondantes à la documentation
  • Mes modifications ne génèrent aucun nouveau warning
  • J'ai ajouté des tests qui prouvent que mon correctif est efficace ou que ma fonctionnalité fonctionne
  • Les tests unitaires passent localement avec mes modifications
  • J'ai mis à jour le fichier Changelog

@DavidFyon DavidFyon merged commit 334254f into v2-bridge Jul 26, 2024
2 checks passed
@DavidFyon DavidFyon deleted the fix/password branch July 26, 2024 13:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

PasswordField : soucis de padding sur version non outlined (à comparer avec PhoneField)
3 participants