refactor(editor): Use form event bus everywhere (no-changelog) (#10394)

This commit is contained in:
Tomi Turtiainen
2024-08-14 15:00:38 +03:00
committed by GitHub
parent bae0116d78
commit e4c88e75f9
6 changed files with 12 additions and 12 deletions

View File

@@ -144,7 +144,7 @@ import { useUIStore } from '@/stores/ui.store';
import { useSettingsStore } from '@/stores/settings.store';
import { useRootStore } from '@/stores/root.store';
import { useUsersStore } from '@/stores/users.store';
import { createEventBus } from 'n8n-design-system/utils';
import { createEventBus, createFormEventBus } from 'n8n-design-system/utils';
import { usePostHog } from '@/stores/posthog.store';
import { useExternalHooks } from '@/composables/useExternalHooks';
import { useUsageStore } from '@/stores/usage.store';
@@ -180,7 +180,7 @@ export default defineComponent({
showAllIndustryQuestions: true,
registerForEnterpriseTrial: false,
modalBus: createEventBus(),
formBus: createEventBus(),
formBus: createFormEventBus(),
domainBlocklist: [] as string[],
};
},