refactor: Enable import/order for design-system, workflow and @n8n packages (#10847)

This commit is contained in:
Tomi Turtiainen
2024-09-18 10:19:33 +03:00
committed by GitHub
parent 5a1db6db1a
commit 4f0a1a953f
305 changed files with 746 additions and 507 deletions

View File

@@ -1,7 +1,8 @@
import AskAssistantButton from './AskAssistantButton.vue';
import { action } from '@storybook/addon-actions';
import type { StoryFn } from '@storybook/vue3';
import AskAssistantButton from './AskAssistantButton.vue';
export default {
title: 'Assistant/AskAssistantButton',
component: AskAssistantButton,

View File

@@ -1,9 +1,10 @@
<script setup lang="ts">
import { ref } from 'vue';
import { useI18n } from '../../composables/useI18n';
import AssistantIcon from '../AskAssistantIcon/AssistantIcon.vue';
import AssistantText from '../AskAssistantText/AssistantText.vue';
import BetaTag from '../BetaTag/BetaTag.vue';
import { useI18n } from '../../composables/useI18n';
const { t } = useI18n();

View File

@@ -1,4 +1,5 @@
import { render } from '@testing-library/vue';
import AskAssistantButton from '../AskAssistantButton.vue';
describe('AskAssistantButton', () => {