Skip to content

Commit

Permalink
Remove character counter from input fields
Browse files Browse the repository at this point in the history
  • Loading branch information
gnarula committed Apr 19, 2018
1 parent e6a8a43 commit e6c1447
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions evoting/frontend/src/components/NewElection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
<v-text-field
:label="getTitleLabel($i18n.locale)"
v-model="name[$i18n.locale]"
:counter=20
prepend-icon="create"
:rules=[validateName]
:validate-on-blur="true"
Expand All @@ -30,7 +29,6 @@
:key="lang"
:label="getTitleLabel(lang)"
v-model="name[lang]"
:counter=20
prepend-icon="create"
:rules=[validateName]
:validate-on-blur="true"
Expand All @@ -49,7 +47,6 @@
<v-text-field
:label="getSubtitleLabel($i18n.locale)"
v-model="subtitle[$i18n.locale]"
:counter=100
prepend-icon="mode_comment"
:rules=[validateSubtitle]
:validate-on-blur="true"
Expand All @@ -63,7 +60,6 @@
:key="lang"
:label="getSubtitleLabel(lang)"
v-model="subtitle[lang]"
:counter=100
prepend-icon="mode_comment"
:rules=[validateSubtitle]
:validate-on-blur="true"
Expand Down Expand Up @@ -159,15 +155,13 @@
<v-text-field
label="Footer Text"
v-model="footerText"
:counter=80
prepend-icon="create"
></v-text-field>
</v-flex>
<v-flex md4 xs12>
<v-text-field
label="Contact Title"
v-model="footerContactTitle"
:counter=20
prepend-icon="create"
></v-text-field>
</v-flex>
Expand All @@ -182,7 +176,6 @@
<v-text-field
label="Contact Email"
v-model="footerContactEmail"
:counter=50
prepend-icon="email"
:rules=[validateEmail]
></v-text-field>
Expand Down

0 comments on commit e6c1447

Please sign in to comment.