Pārlūkot izejas kodu

Fix: In the Agent's workflow, the input content cannot be wrapped, and \n will not work, otherwise an error will be reported #6241 (#6284)

### What problem does this PR solve?

Fix: In the Agent's workflow, the input content cannot be wrapped, and
\n will not work, otherwise an error will be reported #6241

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
tags/v0.18.0
balibabu pirms 7 mēnešiem
vecāks
revīzija
d17ec26c56
Revīzijas autora e-pasta adrese nav piesaistīta nevienam kontam
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  1. 2
    2
      web/src/pages/chat/hooks.ts

+ 2
- 2
web/src/pages/chat/hooks.ts Parādīt failu

@@ -343,8 +343,8 @@ export const useHandleMessageInputChange = () => {

const handleInputChange: ChangeEventHandler<HTMLTextAreaElement> = (e) => {
const value = e.target.value;
const nextValue = value.replaceAll('\\n', '\n').replaceAll('\\t', '\t');
setValue(nextValue);
// const nextValue = value.replaceAll('\\n', '\n').replaceAll('\\t', '\t');
setValue(value);
};

return {

Notiek ielāde…
Atcelt
Saglabāt