Skip to content

Commit

Permalink
fix asterisk placement in dialog example
Browse files Browse the repository at this point in the history
  • Loading branch information
KaelWD committed Oct 25, 2018
1 parent 1408839 commit 382984a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/examples/dialogs/form.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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 Down

0 comments on commit 382984a

Please sign in to comment.