feat: add streaming state to markdown quick actions

- Pass isStreaming prop through message components to disable actions during streaming
- Improve action button styling with icons and better spacing
- Disable buttons while streaming to prevent concurrent actions
This commit is contained in:
KevIsDev
2025-05-26 17:57:10 +01:00
parent 74605e96e3
commit de0a41b5f1
3 changed files with 30 additions and 5 deletions

View File

@@ -100,6 +100,7 @@ export const Messages = forwardRef<HTMLDivElement, MessagesProps>(
append={props.append}
chatMode={props.chatMode}
setChatMode={props.setChatMode}
isStreaming={isStreaming}
/>
)}
</div>