Skip to content

Commit

Permalink
Change tabs to spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
tylertrotter committed May 22, 2020
1 parent 9a8881f commit 72b576e
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions packages/select/src/select.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@
:class="[selectSize ? `is-${ selectSize }` : '']"
:disabled="selectDisabled"
:autocomplete="autoComplete || autocomplete"
:aria-controls="id ? `${id}-listbox` : null"
role="combobox"
aria-haspopup="listbox"
:aria-owns="id ? `${id}-listbox` : null"
:aria-expanded="visible ? 'true' : 'false'"
:aria-controls="id ? `${id}-listbox` : null"
role="combobox"
aria-haspopup="listbox"
:aria-owns="id ? `${id}-listbox` : null"
:aria-expanded="visible ? 'true' : 'false'"
@focus="handleFocus"
@blur="softFocus = false"
@click.stop
Expand Down Expand Up @@ -80,11 +80,11 @@
:name="name"
:id="id"
:autocomplete="autoComplete || autocomplete"
:aria-controls="id ? `${id}-listbox` : null"
role="combobox"
aria-haspopup="listbox"
:aria-owns="id ? `${id}-listbox` : null"
:aria-expanded="visible ? 'true' : 'false'"
:aria-controls="id ? `${id}-listbox` : null"
role="combobox"
aria-haspopup="listbox"
:aria-owns="id ? `${id}-listbox` : null"
:aria-expanded="visible ? 'true' : 'false'"
:size="selectSize"
:disabled="selectDisabled"
:validate-event="false"
Expand Down Expand Up @@ -124,9 +124,8 @@
ref="scrollbar"
:class="{ 'is-empty': !allowCreate && query && filteredOptionsCount === 0 }"
v-show="options.length > 0 && !loading"
:listbox="true"
:id="id ? `${id}-listbox` : null"
>
:listbox="true"
:id="id ? `${id}-listbox` : null">
<el-option
:value="query"
created
Expand Down

0 comments on commit 72b576e

Please sign in to comment.