mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-28 23:01:09 +03:00
@@ -43,7 +43,7 @@ const ChatExpandDialog = ({ show, dialogProps, onClear, onCancel }) => {
|
|||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
</DialogTitle>
|
</DialogTitle>
|
||||||
<DialogContent>
|
<DialogContent sx={{ display: 'flex', justifyContent: 'flex-end', flexDirection: 'column' }}>
|
||||||
<ChatMessage isDialog={true} open={dialogProps.open} chatflowid={dialogProps.chatflowid} />
|
<ChatMessage isDialog={true} open={dialogProps.open} chatflowid={dialogProps.chatflowid} />
|
||||||
</DialogContent>
|
</DialogContent>
|
||||||
</Dialog>
|
</Dialog>
|
||||||
|
|||||||
@@ -127,7 +127,8 @@
|
|||||||
|
|
||||||
.cloud-dialog {
|
.cloud-dialog {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: calc(100vh - 230px);
|
height: 100vh;
|
||||||
|
overflow-y: scroll;
|
||||||
border-radius: 0.5rem;
|
border-radius: 0.5rem;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|||||||
@@ -368,6 +368,7 @@ export const ChatMessage = ({ open, chatflowid, isDialog }) => {
|
|||||||
value={userInput}
|
value={userInput}
|
||||||
onChange={onChange}
|
onChange={onChange}
|
||||||
multiline={true}
|
multiline={true}
|
||||||
|
maxRows={isDialog ? 7 : 2}
|
||||||
endAdornment={
|
endAdornment={
|
||||||
<InputAdornment position='end' sx={{ padding: '15px' }}>
|
<InputAdornment position='end' sx={{ padding: '15px' }}>
|
||||||
<IconButton type='submit' disabled={loading || !chatflowid} edge='end'>
|
<IconButton type='submit' disabled={loading || !chatflowid} edge='end'>
|
||||||
|
|||||||
Reference in New Issue
Block a user