Skip to content

Commit fe005fc

Browse files
Florimondtde-banana-odoo
authored andcommitted
[IMP] outlook: add a tooltip on button to log email button
Purpose is to ease user experience by clearly displaying purpose of available buttons. Without a tooltip, it wasn't clear what this button was doing. Task ID-2376540 PR #2
1 parent 15d0da6 commit fe005fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

outlook/src/taskpane/components/Leads/LeadList/LeadList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class LeadListCompact extends React.Component<LeadListProps, LeadListState> {
3636
</div>
3737

3838
<div className='logicon' onClick={() => {this.props.log(lead.id)}}>
39-
{lead.logged ? <FontAwesomeIcon icon={faCheck}/> : <FontAwesomeIcon icon={faReply} flip='horizontal'/>}
39+
{lead.logged ? <FontAwesomeIcon title='Logged' icon={faCheck}/> : <FontAwesomeIcon title='Log mail in Odoo' icon={faReply} flip='horizontal'/>}
4040
</div>
4141
</div>)
4242
}

0 commit comments

Comments
 (0)