Skip to content

Commit e487122

Browse files
authored
Merge pull request #1028 from haoxiuwen/doc-v2
Modify UIKit Docs
2 parents 3c10877 + e381c05 commit e487122

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

docs/uikit/chatuikit/ios/releasenote.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515

1616
- 修复了不需要消息表情回应时 UI 错乱问题。
1717
- 修复了一些文案问题。
18+
- 修复了群详情页面中解散群组请求中强引用的问题。
1819

1920
### 重大变更
2021

docs/uikit/chatuikit/web/chatuikit_chat.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ const ChatContainer = () => {
125125
content: 'SELECT',
126126
},
127127
{
128-
// 展示消息固定
128+
// 展示消息置顶
129129
content: 'PIN',
130130
},
131131
{
@@ -194,7 +194,7 @@ const ChatContainer = () => {
194194
sendButtonIcon={<Icon type="AIR_PLANE" />} // 发送按钮 Icon
195195
row={1} // Input 行数
196196
placeHolder="请输入内容" // 默认占位符
197-
enabledMention={true} // 是否开启@功能
197+
enabledMention={true} // 是否开启群 @ 功能
198198
onSendMessage={message => {}} //发送消息的回调
199199
onBeforeSendMessage={message => {}} // 消息发送前回调,该回调返回 promise,如果返回的 promise 的状态为已解决(resolved),则发送消息;如果返回的 promise 的状态为已失败(rejected),则不发送消息。
200200
/>

docs/uikit/chatuikit/web/chatuikit_context.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<Toc />
44

5-
聊天 UIKit 的内部 state 据全部存储在 rootStore,rootStore 数据更新会驱动各个组件更新 UI。你可以使用 rootStore 上的数据,也可以调用 UIKit 提供的方法来更新数据。
5+
聊天 UIKit 的内部 state 数据全部存储在 rootStore,rootStore 数据更新会驱动各个组件更新 UI。你可以使用 rootStore 上的数据,也可以调用 UIKit 提供的方法来更新数据。
66

77
rootStore 包含以下数据模块:
88

0 commit comments

Comments
 (0)