feat(editor): Redesign Canvas Chat (#11634)

This commit is contained in:
oleg
2024-11-13 11:05:19 +01:00
committed by GitHub
parent 93a6f858fa
commit a412ab7ebf
41 changed files with 2451 additions and 1063 deletions

View File

@@ -1,9 +1,17 @@
<script lang="ts" setup>
export interface Props {
outline?: boolean;
}
defineProps<Props>();
</script>
<template>
<N8nButton
label="Chat"
size="large"
icon="comment"
type="primary"
:outline="outline"
data-test-id="workflow-chat-button"
/>
</template>