Fix linting issues
This commit is contained in:
parent
52475877fe
commit
a04ce13e6e
|
@ -19,8 +19,8 @@
|
|||
class="ft-input"
|
||||
type="text"
|
||||
:placeholder="placeholder"
|
||||
@input="e => handleInput(e.target.value)"
|
||||
:disabled="disabled"
|
||||
@input="e => handleInput(e.target.value)"
|
||||
>
|
||||
<font-awesome-icon
|
||||
v-if="showArrow"
|
||||
|
|
|
@ -29,9 +29,9 @@
|
|||
class="profileWrapper"
|
||||
>
|
||||
<div
|
||||
class="profile"
|
||||
v-for="(profile, index) in profileList"
|
||||
:key="index"
|
||||
class="profile"
|
||||
@click="setActiveProfile(profile)"
|
||||
>
|
||||
<div
|
||||
|
|
|
@ -107,11 +107,11 @@
|
|||
<img
|
||||
class="channelThumbnail"
|
||||
:src="channel.thumbnail"
|
||||
/>
|
||||
>
|
||||
</div>
|
||||
<p
|
||||
class="navLabel"
|
||||
v-if="isOpen"
|
||||
class="navLabel"
|
||||
>
|
||||
{{ channel.name }}
|
||||
</p>
|
||||
|
|
|
@ -37,9 +37,9 @@
|
|||
<label for="colorPicker">{{ $t("Profile.Custom Color") }}</label>
|
||||
<input
|
||||
id="colorPicker"
|
||||
type="color"
|
||||
v-model="profileBgColor"
|
||||
/>
|
||||
type="color"
|
||||
>
|
||||
</div>
|
||||
</ft-flex-box>
|
||||
<ft-flex-box>
|
||||
|
|
|
@ -23,7 +23,7 @@ export default Vue.extend({
|
|||
methods: {
|
||||
newProfile: function () {
|
||||
this.$router.push({
|
||||
path: `/settings/profile/new/`
|
||||
path: '/settings/profile/new/'
|
||||
})
|
||||
}
|
||||
}
|
||||
|
|
|
@ -20,8 +20,7 @@
|
|||
v-else
|
||||
:data="activeVideoList"
|
||||
/>
|
||||
<ft-flex-box
|
||||
>
|
||||
<ft-flex-box>
|
||||
<ft-button
|
||||
v-if="videoList.length > dataLimit"
|
||||
label="Load More"
|
||||
|
|
Loading…
Reference in New Issue