flow tabs bug solved with variable control inside chat]
This commit is contained in:
parent
571733e261
commit
682190dec0
1 changed files with 5 additions and 2 deletions
|
|
@ -15,6 +15,7 @@ const _ = require("lodash");
|
|||
|
||||
export default function Chat({flow, reactFlowInstance }) {
|
||||
const {updateFlow} = useContext(TabsContext)
|
||||
const [saveChat,setSaveChat] = useState(false)
|
||||
const [open, setOpen] = useState(true);
|
||||
const [chatValue, setChatValue] = useState("");
|
||||
const [chatHistory, setChatHistory] = useState(flow.chat);
|
||||
|
|
@ -25,14 +26,16 @@ export default function Chat({flow, reactFlowInstance }) {
|
|||
newChat.push({ message, isSend });
|
||||
return newChat;
|
||||
});
|
||||
setSaveChat(chat=>!chat)
|
||||
};
|
||||
//bug here why??
|
||||
useEffect(()=>{
|
||||
console.log("flow")
|
||||
updateFlow({..._.cloneDeep(flow),chat:chatHistory})
|
||||
},[chatHistory])
|
||||
},[saveChat])
|
||||
useEffect(()=>{
|
||||
setChatHistory(flow.chat)
|
||||
console.log(flow.chat)
|
||||
// console.log(flow.chat)
|
||||
},[flow])
|
||||
useEffect(()=>{
|
||||
if(ref.current)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue