@myun/gimi-chat 0.4.7 → 0.4.8
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/client/core/chat.js
CHANGED
|
@@ -36,7 +36,7 @@ var Chat = function Chat(props) {
|
|
|
36
36
|
var reloadHistoryList = useCallback(function () {
|
|
37
37
|
if (historyList.findIndex(function (item) {
|
|
38
38
|
return item.id === conversationId;
|
|
39
|
-
})
|
|
39
|
+
}) === -1) {
|
|
40
40
|
dispatch(updateParams({
|
|
41
41
|
pageIndex: 1,
|
|
42
42
|
pageSize: 50
|
|
@@ -499,12 +499,12 @@ var AiExplain = function AiExplain(_ref) {
|
|
|
499
499
|
unsupportedShownRef.current = true;
|
|
500
500
|
}
|
|
501
501
|
Toast.warning({
|
|
502
|
-
id: UNSUPPORTED_CALL_MSG_KEY,
|
|
503
502
|
content: '后续流程暂不支持通话展示,可挂断后继续',
|
|
504
503
|
duration: 0,
|
|
505
504
|
style: {
|
|
506
505
|
marginTop: '30vh'
|
|
507
|
-
}
|
|
506
|
+
},
|
|
507
|
+
zIndex: 1000
|
|
508
508
|
});
|
|
509
509
|
return;
|
|
510
510
|
}
|