mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
chore(legacy): fix @stylistic/exp-list-style ESLint rule
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
This commit is contained in:
parent
efdf1ccf36
commit
e25f864e28
9 changed files with 19 additions and 10 deletions
|
|
@ -383,7 +383,12 @@ export default defineComponent({
|
|||
this.$nextTick(() => {
|
||||
this.$el.scrollTop = scrollTop
|
||||
logger.debug(`VirtualList: scrolling to index ${index}`, {
|
||||
clampedIndex, scrollTop, columnCount: this.columnCount, total: this.totalRowCount, visibleRows: this.visibleRows, beforeHeight: this.beforeHeight,
|
||||
clampedIndex,
|
||||
scrollTop,
|
||||
columnCount: this.columnCount,
|
||||
total: this.totalRowCount,
|
||||
visibleRows: this.visibleRows,
|
||||
beforeHeight: this.beforeHeight,
|
||||
})
|
||||
})
|
||||
},
|
||||
|
|
|
|||
|
|
@ -356,8 +356,7 @@ export default defineComponent({
|
|||
value: this.emails,
|
||||
key: 'emails',
|
||||
scope: 'shareWith',
|
||||
},
|
||||
{
|
||||
}, {
|
||||
value: true,
|
||||
key: 'enabled',
|
||||
scope: 'fileRequest',
|
||||
|
|
|
|||
|
|
@ -112,7 +112,8 @@ export default defineComponent({
|
|||
|
||||
setup() {
|
||||
return {
|
||||
n, t,
|
||||
n,
|
||||
t,
|
||||
}
|
||||
},
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,8 @@
|
|||
|
||||
<script lang="ts" setup>
|
||||
import {
|
||||
type Component, type PropType,
|
||||
type Component,
|
||||
type PropType,
|
||||
|
||||
computed,
|
||||
} from 'vue'
|
||||
|
|
|
|||
|
|
@ -684,8 +684,7 @@ const Dialogs = {
|
|||
}
|
||||
$(dialogId).ocdialog('close')
|
||||
},
|
||||
},
|
||||
{
|
||||
}, {
|
||||
text: t('core', 'Continue'),
|
||||
classes: 'continue',
|
||||
click: function() {
|
||||
|
|
|
|||
|
|
@ -97,6 +97,7 @@ export default {
|
|||
return
|
||||
}
|
||||
|
||||
// eslint-disable-next-line @stylistic/exp-list-style
|
||||
const animation = el.animate?.(
|
||||
[
|
||||
{ opacity: 1 },
|
||||
|
|
|
|||
|
|
@ -5,7 +5,8 @@
|
|||
|
||||
import {
|
||||
showError,
|
||||
showInfo, showMessage,
|
||||
showInfo,
|
||||
showMessage,
|
||||
showSuccess,
|
||||
showWarning,
|
||||
} from '@nextcloud/dialogs'
|
||||
|
|
|
|||
|
|
@ -48,7 +48,8 @@ import { spawnDialog } from '@nextcloud/vue/functions/dialog'
|
|||
import {
|
||||
type Ref,
|
||||
|
||||
computed, ref,
|
||||
computed,
|
||||
ref,
|
||||
} from 'vue'
|
||||
import NcButton from '@nextcloud/vue/components/NcButton'
|
||||
import NcHeaderMenu from '@nextcloud/vue/components/NcHeaderMenu'
|
||||
|
|
|
|||
|
|
@ -93,7 +93,8 @@ export default {
|
|||
const version = list[id]
|
||||
const name = agents[id]?.browser
|
||||
return this.t('core', '{name} version {version} and above', {
|
||||
name, version,
|
||||
name,
|
||||
version,
|
||||
})
|
||||
}).filter((entry) => entry !== null)
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue