diff options
| author | Henry Jameson <me@hjkos.com> | 2020-01-12 17:59:41 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2020-01-12 17:59:41 +0200 |
| commit | 3492d7f81ec3f99c4f15f9ab75f658b3d1db7799 (patch) | |
| tree | f254657f83138e7beb03b7d1e3e433c06e3c866c | |
| parent | 39dd08e69423722a172bcc3cec3791ae172a8175 (diff) | |
eslint
| -rw-r--r-- | src/components/color_input/color_input.vue | 8 | ||||
| -rw-r--r-- | src/components/opacity_input/opacity_input.vue | 8 | ||||
| -rw-r--r-- | src/components/settings/settings.vue | 4 | ||||
| -rw-r--r-- | src/components/style_switcher/style_switcher.vue | 6 |
4 files changed, 13 insertions, 13 deletions
diff --git a/src/components/color_input/color_input.vue b/src/components/color_input/color_input.vue index 7fe04433..e54409fe 100644 --- a/src/components/color_input/color_input.vue +++ b/src/components/color_input/color_input.vue @@ -13,8 +13,8 @@ v-if="typeof fallback !== 'undefined' && showOptionalTickbox" :checked="present" :disabled="disabled" - @change="$emit('input', typeof value === 'undefined' ? fallback : undefined)" class="opt" + @change="$emit('input', typeof value === 'undefined' ? fallback : undefined)" /> <div class="input color-input-field"> <input @@ -46,6 +46,9 @@ import Checkbox from '../checkbox/checkbox.vue' import { hex2rgb } from '../../services/color_convert/color_convert.js' export default { + components: { + Checkbox + }, props: { // Name of color, used for identifying name: { @@ -83,9 +86,6 @@ export default { default: true } }, - components: { - Checkbox - }, computed: { present () { return typeof this.value !== 'undefined' diff --git a/src/components/opacity_input/opacity_input.vue b/src/components/opacity_input/opacity_input.vue index cfda9926..3cc3942b 100644 --- a/src/components/opacity_input/opacity_input.vue +++ b/src/components/opacity_input/opacity_input.vue @@ -13,8 +13,8 @@ v-if="typeof fallback !== 'undefined'" :checked="present" :disabled="disabled" - @change="$emit('input', !present ? fallback : undefined)" class="opt" + @change="$emit('input', !present ? fallback : undefined)" /> <input :id="name" @@ -33,12 +33,12 @@ <script> import Checkbox from '../checkbox/checkbox.vue' export default { - props: [ - 'name', 'value', 'fallback', 'disabled' - ], components: { Checkbox }, + props: [ + 'name', 'value', 'fallback', 'disabled' + ], computed: { present () { return typeof this.value !== 'undefined' diff --git a/src/components/settings/settings.vue b/src/components/settings/settings.vue index b40c85dd..e118dbcc 100644 --- a/src/components/settings/settings.vue +++ b/src/components/settings/settings.vue @@ -76,9 +76,9 @@ <li> <Checkbox v-model="useStreamingApi"> {{ $t('settings.useStreamingApi') }} - <br/> + <br> <small> - {{ $t('settings.useStreamingApiWarning') }} + {{ $t('settings.useStreamingApiWarning') }} </small> </Checkbox> </li> diff --git a/src/components/style_switcher/style_switcher.vue b/src/components/style_switcher/style_switcher.vue index b059eb8a..ff6a8264 100644 --- a/src/components/style_switcher/style_switcher.vue +++ b/src/components/style_switcher/style_switcher.vue @@ -119,14 +119,14 @@ name="accentColor" :fallback="previewTheme.colors.link" :label="$t('settings.accent')" - :showOptionalTickbox="typeof linkColorLocal !== 'undefined'" + :show-optional-tickbox="typeof linkColorLocal !== 'undefined'" /> <ColorInput v-model="linkColorLocal" name="linkColor" :fallback="previewTheme.colors.accent" :label="$t('settings.links')" - :showOptionalTickbox="typeof accentColorLocal !== 'undefined'" + :show-optional-tickbox="typeof accentColorLocal !== 'undefined'" /> <ContrastRatio :contrast="previewContrast.bgLink" /> </div> @@ -388,7 +388,7 @@ v-model="underlayColorLocal" name="underlay" :label="$t('settings.style.advanced_colors.underlay')" - fallback='#000000' + fallback="#000000" /> <OpacityInput v-model="underlayOpacityLocal" |
