File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
src/components/TeamManagement Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ require('moment-timezone')
55import UserTooltip from '../User/UserTooltip'
66import SunIcon from '../../assets/icons/daylight.svg'
77import MoonIcon from '../../assets/icons/moon.svg'
8+ import FAQIcon from '../../assets/icons/faq.svg'
89import { getFullNameWithFallback } from '../../helpers/tcHelpers'
910import './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 > }
Original file line number Diff line number Diff line change 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 {
You can’t perform that action at this time.
0 commit comments