Skip to content

Commit

Permalink
fix: rm useless assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
ci010 committed Jul 14, 2019
1 parent b1605d6 commit 692fa1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/renderer/windows/main/components/ArgsCombobox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<span class="pr-2">
{{ item.text }}
</span>
<v-icon small @click="parent.selectItem(item); item.index = index;">
<v-icon small @click="parent.selectItem(item);">
close
</v-icon>
</v-chip>
Expand Down Expand Up @@ -79,7 +79,7 @@ export default {
this.$emit('input', val.map((v) => {
if (typeof v === 'string') {
this.items.push({ text: v });
}
}
return v;
}));
},
Expand Down

0 comments on commit 692fa1a

Please sign in to comment.