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

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
pull/57709/head
Ferdinand Thiessen 1 month ago
parent 0028d127f3
commit 44917b5ef1
No known key found for this signature in database
GPG Key ID: 7E849AE05218500F
  1. 7
      apps/files/src/components/VirtualList.vue
  2. 3
      apps/files_sharing/src/components/NewFileRequestDialog.vue
  3. 3
      apps/files_sharing/src/components/NewFileRequestDialog/NewFileRequestDialogFinish.vue
  4. 3
      apps/files_sharing/src/components/SidebarTabExternal/SidebarTabExternalSectionLegacy.vue
  5. 3
      core/src/OC/dialogs.js
  6. 1
      core/src/OC/msg.ts
  7. 3
      core/src/OCP/toast.js
  8. 3
      core/src/views/PublicPageMenu.vue
  9. 3
      core/src/views/UnsupportedBrowser.vue

@ -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…
Cancel
Save