diff options
author | skjnldsv <skjnldsv@protonmail.com> | 2024-11-19 09:43:18 +0100 |
---|---|---|
committer | skjnldsv <skjnldsv@protonmail.com> | 2024-11-19 09:56:30 +0100 |
commit | dd5a344f5e1660cc1dce986e79b84b829ca8b698 (patch) | |
tree | 562ae1524e1dc603fcb4878a36d46f79f2d88a40 /apps | |
parent | 2cb2abf1a9744b72f6c3af7b7bac123569eb939f (diff) | |
download | nextcloud-server-dd5a344f5e1660cc1dce986e79b84b829ca8b698.tar.gz nextcloud-server-dd5a344f5e1660cc1dce986e79b84b829ca8b698.zip |
chore: lint fixchore/force-style-lint
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
Diffstat (limited to 'apps')
4 files changed, 16 insertions, 12 deletions
diff --git a/apps/files/src/store/files.ts b/apps/files/src/store/files.ts index 952e3cd41c5..f2079bb1d4d 100644 --- a/apps/files/src/store/files.ts +++ b/apps/files/src/store/files.ts @@ -58,7 +58,7 @@ export const useFilesStore = function(...args) { * * @param service The service (files view) * @param path The path relative within the service - * @returns Array of cached nodes within the path + * @return Array of cached nodes within the path */ getNodesByPath(service: string, path?: string): Node[] { const pathsStore = usePathsStore() diff --git a/apps/files_sharing/src/views/SharingDetailsTab.vue b/apps/files_sharing/src/views/SharingDetailsTab.vue index 4711103c80e..70f49dea83e 100644 --- a/apps/files_sharing/src/views/SharingDetailsTab.vue +++ b/apps/files_sharing/src/views/SharingDetailsTab.vue @@ -366,12 +366,12 @@ export default { case this.SHARE_TYPES.SHARE_TYPE_GUEST: return t('files_sharing', 'Share with guest') default: { - if (this.share.id) { - // Share already exists - return t('files_sharing', 'Update share') - } else { - return t('files_sharing', 'Create share') - } + if (this.share.id) { + // Share already exists + return t('files_sharing', 'Update share') + } else { + return t('files_sharing', 'Create share') + } } } }, diff --git a/apps/settings/src/components/AppStoreSidebar/AppDetailsTab.vue b/apps/settings/src/components/AppStoreSidebar/AppDetailsTab.vue index e66f712c1aa..f3adbfd2a1c 100644 --- a/apps/settings/src/components/AppStoreSidebar/AppDetailsTab.vue +++ b/apps/settings/src/components/AppStoreSidebar/AppDetailsTab.vue @@ -343,16 +343,16 @@ export default { .sort((a, b) => a.name.localeCompare(b.name)) }, }, - mounted() { - if (this.app.groups.length > 0) { - this.groupCheckedAppsData = true - } - }, watch: { 'app.id'() { this.removeData = false }, }, + mounted() { + if (this.app.groups.length > 0) { + this.groupCheckedAppsData = true + } + }, methods: { toggleRemoveData() { this.removeData = !this.removeData diff --git a/apps/systemtags/src/files_actions/bulkSystemTagsAction.ts b/apps/systemtags/src/files_actions/bulkSystemTagsAction.ts index 3e5fdc41480..b0d68ef65ca 100644 --- a/apps/systemtags/src/files_actions/bulkSystemTagsAction.ts +++ b/apps/systemtags/src/files_actions/bulkSystemTagsAction.ts @@ -12,6 +12,10 @@ import { t } from '@nextcloud/l10n' import TagMultipleSvg from '@mdi/svg/svg/tag-multiple.svg?raw' +/** + * + * @param nodes + */ async function execBatch(nodes: Node[]): Promise<(null|boolean)[]> { const response = await new Promise<null|boolean>((resolve) => { spawnDialog(defineAsyncComponent(() => import('../components/SystemTagPicker.vue')), { |