Skip to content

Commit

Permalink
Move @click up two elements. (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
seeker25 authored May 10, 2022
1 parent ff33ae6 commit e428669
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/common/StatusMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@

<v-list dense>
<template v-for="(item, i) in routingAllowedSlipStatus">
<v-list-item v-if="item.label !== ''" :key="i" class="menu-list" >
<v-list-item v-if="item.label !== ''" :key="i" class="menu-list" @click="setStatus(item)" >
<v-list-item-content>
<v-list-item-title @click="setStatus(item)">{{
<v-list-item-title>{{
item.label
}}</v-list-item-title>
</v-list-item-content>
Expand Down

0 comments on commit e428669

Please sign in to comment.