Skip to content

Commit 16d4a3c

Browse files
author
vikasrohit
authored
Merge pull request #4404 from yoution/issue-4399
fix: issue #4399
2 parents 33188ab + aba4dbe commit 16d4a3c

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

src/components/TeamManagement/MemberItem.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ require('moment-timezone')
55
import UserTooltip from '../User/UserTooltip'
66
import SunIcon from '../../assets/icons/daylight.svg'
77
import MoonIcon from '../../assets/icons/moon.svg'
8+
import FAQIcon from '../../assets/icons/faq.svg'
89
import { getFullNameWithFallback } from '../../helpers/tcHelpers'
910
import './MemberItem.scss'
1011

@@ -64,7 +65,7 @@ const MemberItem = (props) => {
6465
return (
6566
<div styleName="container">
6667
<UserTooltip {...props} localTimeInfo={localTimeInfoEl}/>
67-
{feedback && <a styleName="feed-back" href={feedback} target="_blank">Feed Back</a>}
68+
{feedback && <span styleName="feed-back"> <a href={feedback} target="_blank"><FAQIcon/></a></span>}
6869
<div styleName="member-detail">
6970
<div styleName="member-name">{showEmailOnly? email :userFullName}</div>
7071
{localWhStart && localWhEnd && <div styleName="wk-hour">WH: {localWhStart} - {localWhEnd} {localTimeOffsetFormat}</div>}

src/components/TeamManagement/MemberItem.scss

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,17 @@
2222
}
2323

2424
.feed-back {
25-
color: #0681ff;
2625
position: absolute;
2726
font-size: 12px;
2827
right: 0px;
2928
top: 4px;
29+
display: flex;
30+
align-items: center;
31+
32+
svg {
33+
width: 15px;
34+
margin-top: -2px;
35+
}
3036
}
3137

3238
.member-detail {

0 commit comments

Comments
 (0)