We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 920799c commit 5c1891dCopy full SHA for 5c1891d
browser/data-browser/src/chunks/MarkdownEditor/AIChatInput/AsyncAIChatInput.tsx
@@ -23,7 +23,6 @@ const SerializableMention = Mention.extend({
23
state.write('@' + (node.attrs.label || ''));
24
state.renderContent(node);
25
state.flushClose(1);
26
- state.closeBlock(node);
27
},
28
29
};
browser/data-browser/src/components/AI/SimpleAIChat.tsx
@@ -789,6 +789,7 @@ const AttachmentPreview = styled.div`
789
`;
790
791
const ChatWindow = styled.div<{ fullView?: boolean }>`
792
+ padding: ${p => (p.fullView ? p.theme.size() : 0)};
793
padding-top: ${p => (p.fullView ? p.theme.size(2) : 0)};
794
position: relative;
795
display: grid;
0 commit comments