Skip to content

Commit

Permalink
feat(core): resolvido 'clique em lixeira disparando clique em item'
Browse files Browse the repository at this point in the history
  • Loading branch information
pickler-incuca committed Feb 21, 2018
1 parent 353f53e commit 03e2806
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/ic-crud-dropdown/ic-crud-dropdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,10 @@
class="iccd-select-trash_button"
v-if="!disableDelete"
:style="{visibility: focusedItem === item?'visible':'hidden'}"
:title="txtTrashItem"
@click="onTrashClick(item)">
<i class="fa fa-trash"></i>
:title="txtTrashItem">
<i
class="fa fa-trash"
@click.stop="onTrashClick(item)"></i>
</span>
</b-dropdown-item>
<infinite-loading v-if="enablePagination" @infinite="onInfiniteScroll" />
Expand Down

0 comments on commit 03e2806

Please sign in to comment.