chore(legacy): fix @stylistic/exp-list-style ESLint rule

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
This commit is contained in:
Ferdinand Thiessen 2026-01-26 00:03:30 +01:00
parent efdf1ccf36
commit e25f864e28
No known key found for this signature in database
GPG key ID: 7E849AE05218500F
9 changed files with 19 additions and 10 deletions

View file

@ -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,
})
})
},

View file

@ -356,8 +356,7 @@ export default defineComponent({
value: this.emails,
key: 'emails',
scope: 'shareWith',
},
{
}, {
value: true,
key: 'enabled',
scope: 'fileRequest',

View file

@ -112,7 +112,8 @@ export default defineComponent({
setup() {
return {
n, t,
n,
t,
}
},

View file

@ -11,7 +11,8 @@
<script lang="ts" setup>
import {
type Component, type PropType,
type Component,
type PropType,
computed,
} from 'vue'

View file

@ -684,8 +684,7 @@ const Dialogs = {
}
$(dialogId).ocdialog('close')
},
},
{
}, {
text: t('core', 'Continue'),
classes: 'continue',
click: function() {

View file

@ -97,6 +97,7 @@ export default {
return
}
// eslint-disable-next-line @stylistic/exp-list-style
const animation = el.animate?.(
[
{ opacity: 1 },

View file

@ -5,7 +5,8 @@
import {
showError,
showInfo, showMessage,
showInfo,
showMessage,
showSuccess,
showWarning,
} from '@nextcloud/dialogs'

View file

@ -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'

View file

@ -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)
},