Skip to content

Commit

Permalink
fix: prevent to add a declaration when clicking existing declaration …
Browse files Browse the repository at this point in the history
…values (#14)
  • Loading branch information
ktsn committed Mar 21, 2018
1 parent 172a334 commit 8c8de9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/view/components/StyleInformation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<span class="selector" v-for="s in rule.selectors" :key="s">{{ s }}</span>
</p>

<ul class="declaration-list">
<ul class="declaration-list" @click.stop>
<li class="declaration" v-for="d in rule.declarations" :key="d.path.join('.')">
<span class="declaration-prop"><StyleValue
class="declaration-prop-text"
Expand Down

0 comments on commit 8c8de9f

Please sign in to comment.