浏览代码

fix(rn, polls): Display 'Chat and Polls' as heading when polls enabled

master
Vlad Piersec 4 年前
父节点
当前提交
7f95bc23fe
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      react/features/chat/components/native/Chat.js

+ 1
- 1
react/features/chat/components/native/Chat.js 查看文件

45
         return (
45
         return (
46
             <JitsiModal
46
             <JitsiModal
47
                 headerProps = {{
47
                 headerProps = {{
48
-                    headerLabelKey: 'chat.title'
48
+                    headerLabelKey: this.props._isPollsEnabled ? 'chat.titleWithPolls' : 'chat.title'
49
                 }}
49
                 }}
50
                 modalId = { CHAT_VIEW_MODAL_ID }
50
                 modalId = { CHAT_VIEW_MODAL_ID }
51
                 onClose = { this._onClose }>
51
                 onClose = { this._onClose }>

正在加载...
取消
保存