mirror of
https://github.com/nextcloud/server.git
synced 2026-03-16 23:53:28 -04:00
Fix lint problems in vue files
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
parent
b41b9cf4c0
commit
a56d40cf2d
2 changed files with 8 additions and 5 deletions
|
|
@ -20,7 +20,10 @@
|
|||
</span>
|
||||
</div>
|
||||
<div class="card__body" v-if="!collapsed[category]">
|
||||
<div v-for="(check, name) in checks" :key="name" class="row-check" :class="['row-check__' + check.severity]">
|
||||
<div v-for="(check, name) in checks"
|
||||
:key="name"
|
||||
class="row-check"
|
||||
:class="['row-check__' + check.severity]">
|
||||
<template v-if="check.severity === 'success'">
|
||||
<Check :size="20" :fill-color="'var(--color-success)'" />
|
||||
</template>
|
||||
|
|
@ -32,10 +35,10 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import NcSettingsSection from '@nextcloud/vue/dist/Components/NcSettingsSection'
|
||||
import NcSettingsSection from '@nextcloud/vue/dist/Components/NcSettingsSection.js'
|
||||
import axios from '@nextcloud/axios'
|
||||
import { generateUrl } from '@nextcloud/router'
|
||||
import Check from 'vue-material-design-icons/Check'
|
||||
import Check from 'vue-material-design-icons/Check.vue'
|
||||
|
||||
export default {
|
||||
name: 'SetupCheck',
|
||||
|
|
|
|||
|
|
@ -24,9 +24,9 @@ import Vue from 'vue'
|
|||
import { getRequestToken } from '@nextcloud/auth'
|
||||
import { translate as t } from '@nextcloud/l10n'
|
||||
|
||||
import logger from './logger'
|
||||
import logger from './logger.js'
|
||||
|
||||
import SetupCheck from './components/SetupCheck'
|
||||
import SetupCheck from './components/SetupCheck.vue'
|
||||
|
||||
__webpack_nonce__ = btoa(getRequestToken())
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue