llmasaservice-ui 0.9.0 → 0.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/ChatPanel.tsx +1 -1
package/dist/index.js
CHANGED
|
@@ -787,7 +787,7 @@ var ChatPanel = ({
|
|
|
787
787
|
},
|
|
788
788
|
body: JSON.stringify({
|
|
789
789
|
project_id: project_id != null ? project_id : "",
|
|
790
|
-
conversation_id:
|
|
790
|
+
conversation_id: currentConversation != null ? currentConversation : "",
|
|
791
791
|
emailaddress,
|
|
792
792
|
comment
|
|
793
793
|
})
|
package/dist/index.mjs
CHANGED
|
@@ -753,7 +753,7 @@ var ChatPanel = ({
|
|
|
753
753
|
},
|
|
754
754
|
body: JSON.stringify({
|
|
755
755
|
project_id: project_id != null ? project_id : "",
|
|
756
|
-
conversation_id:
|
|
756
|
+
conversation_id: currentConversation != null ? currentConversation : "",
|
|
757
757
|
emailaddress,
|
|
758
758
|
comment
|
|
759
759
|
})
|
package/package.json
CHANGED
package/src/ChatPanel.tsx
CHANGED
|
@@ -824,7 +824,7 @@ const ChatPanel: React.FC<ChatPanelProps & ExtraProps> = ({
|
|
|
824
824
|
},
|
|
825
825
|
body: JSON.stringify({
|
|
826
826
|
project_id: project_id ?? "",
|
|
827
|
-
conversation_id:
|
|
827
|
+
conversation_id: currentConversation ?? "",
|
|
828
828
|
emailaddress: emailaddress,
|
|
829
829
|
comment: comment,
|
|
830
830
|
}),
|