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

Sabau/1655 trim input #1703

Merged
merged 3 commits into from
Dec 5, 2018
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- [\#1547](https://github.com/cosmos/voyager/issues/1547) deleted archive directory of old components @jbibla
- removed unit tests from prepush hook @faboweb
- [\#1566](https://github.com/cosmos/voyager/issues/1566) putting querying errors in the store instead of showing notifications @faboweb
- [\1612](https://github.com/cosmos/voyager/issues/1612) defined props types on components
- [\#1612](https://github.com/cosmos/voyager/issues/1612) defined props types on components
- changed `err` to `error` because abbreviations are bad @faboweb
- [\1609](https://github.com/cosmos/voyager/issues/1609) switched to css and html to onboard developers faster @faboweb
- [\1594](https://github.com/cosmos/voyager/issues/1594) disable decimal amount transfers @fedekunze
- [\1680](https://github.com/cosmos/voyager/issues/1680) updated `TmBalance` to receive tabs an array of objects to avoid conflicting routes @fedekunze
- [\#1609](https://github.com/cosmos/voyager/issues/1609) switched to css and html to onboard developers faster @faboweb
- [\#1594](https://github.com/cosmos/voyager/issues/1594) disable decimal amount transfers @fedekunze
- [\#1680](https://github.com/cosmos/voyager/issues/1680) updated `TmBalance` to receive tabs an array of objects to avoid conflicting routes @fedekunze
- [\#1655](https://github.com/cosmos/voyager/issues/1655) Text and Textarea fields trimmed @sabau

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion app/src/renderer/components/common/TmModalSearch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<div class="tm-modal-search-field">
<tm-field
id="search-input"
v-model="query"
v-model.trim="query"
class="mousetrap"
type="text"
placeholder="Search..."
Expand Down
2 changes: 1 addition & 1 deletion app/src/renderer/components/common/TmSessionImport.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
>
<tm-field
id="import-name"
v-model="fields.importName"
v-model.trim="fields.importName"
type="text"
placeholder="Must have at least 5 characters"
/>
Expand Down
2 changes: 1 addition & 1 deletion app/src/renderer/components/common/TmSessionSignUp.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
>
<tm-field
id="sign-up-name"
v-model="fields.signUpName"
v-model.trim="fields.signUpName"
type="text"
placeholder="Must be at least 5 characters"
/>
Expand Down
4 changes: 2 additions & 2 deletions app/src/renderer/components/governance/ModalPropose.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<tm-field
v-focus
id="title"
v-model="title"
v-model.trim="title"
type="text"
placeholder="Proposal title"
/>
Expand All @@ -32,7 +32,7 @@
<span>Description</span>
<tm-field
id="description"
v-model="description"
v-model.trim="description"
type="textarea"
placeholder="Write your proposal here..."
/>
Expand Down
2 changes: 1 addition & 1 deletion app/src/renderer/components/wallet/PageSend.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<tm-field-group>
<tm-field
id="send-address"
v-model="fields.address"
v-model.trim="fields.address"
type="text"
placeholder="Address"
/>
Expand Down