Fix linting issues
This commit is contained in:
parent
52475877fe
commit
a04ce13e6e
|
@ -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"
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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/'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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"
|
||||||
|
|
Loading…
Reference in New Issue