logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe
commit: 5679dcdd18750a1fc9ac1d4eeea3fd3b642a2151
parent: 632773ba91ef021dd589ab4d2037f5e0ed7ca5b2
Author: kaniini <ariadne@dereferenced.org>
Date:   Fri,  8 Nov 2019 18:46:44 +0000

Merge branch 'eslint-fix' into 'develop'

Fix eslint warnings

See merge request pleroma/pleroma-fe!984

Diffstat:

Msrc/components/checkbox/checkbox.vue2+-
Msrc/components/tab_switcher/tab_switcher.js6++++--
2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/src/components/checkbox/checkbox.vue b/src/components/checkbox/checkbox.vue @@ -12,8 +12,8 @@ > <i class="checkbox-indicator" /> <span - class="label" v-if="!!$slots.default" + class="label" > <slot /> </span> diff --git a/src/components/tab_switcher/tab_switcher.js b/src/components/tab_switcher/tab_switcher.js @@ -12,11 +12,13 @@ export default Vue.component('tab-switcher', { }, onSwitch: { required: false, - type: Function + type: Function, + default: undefined }, activeTab: { required: false, - type: String + type: String, + default: undefined }, scrollableTabs: { required: false,