Fix linting issues

This commit is contained in:
Preston 2020-09-01 23:25:06 -04:00
parent 52475877fe
commit a04ce13e6e
6 changed files with 8 additions and 9 deletions

View File

@ -19,8 +19,8 @@
class="ft-input" class="ft-input"
type="text" type="text"
:placeholder="placeholder" :placeholder="placeholder"
@input="e => handleInput(e.target.value)"
:disabled="disabled" :disabled="disabled"
@input="e => handleInput(e.target.value)"
> >
<font-awesome-icon <font-awesome-icon
v-if="showArrow" v-if="showArrow"

View File

@ -29,9 +29,9 @@
class="profileWrapper" class="profileWrapper"
> >
<div <div
class="profile"
v-for="(profile, index) in profileList" v-for="(profile, index) in profileList"
:key="index" :key="index"
class="profile"
@click="setActiveProfile(profile)" @click="setActiveProfile(profile)"
> >
<div <div

View File

@ -107,11 +107,11 @@
<img <img
class="channelThumbnail" class="channelThumbnail"
:src="channel.thumbnail" :src="channel.thumbnail"
/> >
</div> </div>
<p <p
class="navLabel"
v-if="isOpen" v-if="isOpen"
class="navLabel"
> >
{{ channel.name }} {{ channel.name }}
</p> </p>

View File

@ -37,9 +37,9 @@
<label for="colorPicker">{{ $t("Profile.Custom Color") }}</label> <label for="colorPicker">{{ $t("Profile.Custom Color") }}</label>
<input <input
id="colorPicker" id="colorPicker"
type="color"
v-model="profileBgColor" v-model="profileBgColor"
/> type="color"
>
</div> </div>
</ft-flex-box> </ft-flex-box>
<ft-flex-box> <ft-flex-box>

View File

@ -23,7 +23,7 @@ export default Vue.extend({
methods: { methods: {
newProfile: function () { newProfile: function () {
this.$router.push({ this.$router.push({
path: `/settings/profile/new/` path: '/settings/profile/new/'
}) })
} }
} }

View File

@ -20,8 +20,7 @@
v-else v-else
:data="activeVideoList" :data="activeVideoList"
/> />
<ft-flex-box <ft-flex-box>
>
<ft-button <ft-button
v-if="videoList.length > dataLimit" v-if="videoList.length > dataLimit"
label="Load More" label="Load More"