From 3410959e2feaf93734b4ae90f045593e3467ab9a Mon Sep 17 00:00:00 2001 From: Mr Ke <kelq@hugeinfo.com.cn> Date: Mon, 01 Jun 2020 16:09:15 +0800 Subject: [PATCH] 修复userId参数错误问题 --- src/components/common/NotifyList/index.jsx | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/components/common/NotifyList/index.jsx b/src/components/common/NotifyList/index.jsx index 7409e23..b6afd7d 100644 --- a/src/components/common/NotifyList/index.jsx +++ b/src/components/common/NotifyList/index.jsx @@ -66,7 +66,7 @@ <marquee onMouseOut={this.onMouseOut} onMouseOver={this.onMouseOver} ref='marquee' style={{ cursor: 'pointer' }}>{notice.documentTitle || ''}</marquee> </div> { - notice.documentContent ? <Tooltip placement='topLeft' title={this.emoveTAG(notice.documentContent)} arrowPointAtCenter> + notice.documentContent ? <Tooltip placement='topLeft' title={this.emoveTAG(notice.documentContent)}> <div className="notify-list-main-dom-msg-content" onClick={() => { notice.id && this.linkDetail(notice.id) }}>{this.emoveTAG(notice.documentContent)}</div> </Tooltip> : null } -- Gitblit v1.8.0