Skip to content

Commit

Permalink
Disable eslint in templates of generated blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdoinel committed Mar 16, 2018
1 parent 89e616c commit 4c21c79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/js/components/StickyNav.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class="container">
<div class="stickyNav__nav">
<div class="stickyNav__links" v-if="navItems.length > 1">
<a href="#" v-for="item in navItems" :key="item.fieldset" @click.prevent="scrollToFieldset(index)" :class="{ 's--on' : item.active }">{{ item.label }}</a>
<a href="#" v-for="(item, index) in navItems" :key="item.fieldset" @click.prevent="scrollToFieldset(index)" :class="{ 's--on' : item.active }">{{ item.label }}</a>
</div>
<slot name="title"></slot>
</div>
Expand Down
1 change: 1 addition & 0 deletions views/blocks/builder.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<template>
<!-- eslint-disable -->
<div class="block__body">
{!! $render !!}
</div>
Expand Down

0 comments on commit 4c21c79

Please sign in to comment.