chore: Update self-closing tag eslint config (#4826)

* chore: Fix self-closing tag issues

* Fix merge conflicts

Co-authored-by: Fayaz Ahmed <15716057+fayazara@users.noreply.github.com>
This commit is contained in:
Pranav Raj S 2022-06-10 19:29:52 +05:30 committed by GitHub
parent 3f3ee6c34a
commit 7bb8186e43
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
86 changed files with 151 additions and 186 deletions

View file

@ -1,9 +1,5 @@
<template>
<li
class="dropdown-menu--divider"
:tabindex="null"
:aria-disabled="true"
></li>
<li class="dropdown-menu--divider" :tabindex="null" :aria-disabled="true" />
</template>
<script>
export default {};

View file

@ -7,7 +7,7 @@
:tabindex="disabled ? null : -1"
:aria-disabled="disabled"
>
<slot></slot>
<slot />
</li>
</template>
<script>

View file

@ -4,7 +4,7 @@
class="dropdown menu vertical"
:class="[placement && `dropdown--${placement}`]"
>
<slot></slot>
<slot />
</ul>
</template>
<script>

View file

@ -2,7 +2,7 @@
<li class="sub-menu-container">
<ul class="sub-menu-li-container">
<woot-dropdown-header :title="title" />
<slot></slot>
<slot />
</ul>
</li>
</template>