Skip to content

Commit

Permalink
Fix #52
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaberaldo committed May 3, 2017
1 parent 2f1dabe commit 788d060
Show file tree
Hide file tree
Showing 5 changed files with 170 additions and 215 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* Fix Dropdown background overlay index
* #43 Fix Dialog cancel button focus state
* #50 Add ``page-change`` event on Table
* #52 Fix Select option

## 0.2.2

Expand Down
12 changes: 6 additions & 6 deletions docs/pages/documentation/form/Input.vue
Original file line number Diff line number Diff line change
Expand Up @@ -232,9 +232,9 @@
<h3 class="subtitle">How many you need</h3>
<b-field>
<b-select placeholder="Currency">
<b-option>$</b-option>
<b-option>£</b-option>
<b-option>€</b-option>
<option>$</option>
<option>£</option>
<option>€</option>
</b-select>
<b-input placeholder="0,00"></b-input>
<p class="control">
Expand Down Expand Up @@ -804,9 +804,9 @@
<h3 class="subtitle">How many you need</h3>
<b-field>
<b-select placeholder="Currency">
<b-option>$</b-option>
<b-option>£</b-option>
<b-option>€</b-option>
<option>$</option>
<option>£</option>
<option>€</option>
</b-select>
<b-input placeholder="How much will you donate?"></b-input>
<p class="control">
Expand Down

0 comments on commit 788d060

Please sign in to comment.