Skip to content

Commit

Permalink
fix: info about non-existing asterisk
Browse files Browse the repository at this point in the history
fixes #599
  • Loading branch information
jacekkarczmarczyk authored and KaelWD committed Oct 25, 2018
1 parent 6444da7 commit 4eea8d5
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/examples/dialogs/form.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<v-layout row justify-center>
<v-dialog v-model="dialog" persistent max-width="500px">
<v-dialog v-model="dialog" persistent max-width="600px">
<v-btn slot="activator" color="primary" dark>Open Dialog</v-btn>
<v-card>
<v-card-title>
Expand All @@ -10,29 +10,29 @@
<v-container grid-list-md>
<v-layout wrap>
<v-flex xs12 sm6 md4>
<v-text-field label="Legal first name" required></v-text-field>
<v-text-field label="Legal first name (*)" required></v-text-field>
</v-flex>
<v-flex xs12 sm6 md4>
<v-text-field label="Legal middle name" hint="example of helper text only on focus"></v-text-field>
</v-flex>
<v-flex xs12 sm6 md4>
<v-text-field
label="Legal last name"
label="Legal last name (*)"
hint="example of persistent helper text"
persistent-hint
required
></v-text-field>
</v-flex>
<v-flex xs12>
<v-text-field label="Email" required></v-text-field>
<v-text-field label="Email (*)" required></v-text-field>
</v-flex>
<v-flex xs12>
<v-text-field label="Password" type="password" required></v-text-field>
<v-text-field label="Password (*)" type="password" required></v-text-field>
</v-flex>
<v-flex xs12 sm6>
<v-select
:items="['0-17', '18-29', '30-54', '54+']"
label="Age"
label="Age (*)"
required
></v-select>
</v-flex>
Expand All @@ -41,7 +41,6 @@
:items="['Skiing', 'Ice hockey', 'Soccer', 'Basketball', 'Hockey', 'Reading', 'Writing', 'Coding', 'Basejump']"
label="Interests"
multiple
chips
></v-autocomplete>
</v-flex>
</v-layout>
Expand Down

0 comments on commit 4eea8d5

Please sign in to comment.