mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
fix: Set '@typescript-eslint/return-await' rule to 'always' for FE (no-changelog) (#8373)
This commit is contained in:
@@ -172,9 +172,11 @@ import { get, set } from 'lodash-es';
|
||||
import { useNodeHelpers } from '@/composables/useNodeHelpers';
|
||||
|
||||
const FixedCollectionParameter = defineAsyncComponent(
|
||||
async () => import('./FixedCollectionParameter.vue'),
|
||||
async () => await import('./FixedCollectionParameter.vue'),
|
||||
);
|
||||
const CollectionParameter = defineAsyncComponent(
|
||||
async () => await import('./CollectionParameter.vue'),
|
||||
);
|
||||
const CollectionParameter = defineAsyncComponent(async () => import('./CollectionParameter.vue'));
|
||||
|
||||
export default defineComponent({
|
||||
name: 'ParameterInputList',
|
||||
|
||||
Reference in New Issue
Block a user