Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions frontend/web/components/Headway.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,15 @@ class _Headway extends React.Component {
<Tooltip
place='bottom'
title={
<Row
onClick={() => {
Headway.show()
}}
className={this.props.className}
>
<Icon name='bell' width={20} fill='#9DA4AE' />
<Row onClick={() => Headway.show()} className={this.props.className}>
<span
onClick={(e) => {
e.stopPropagation()
Headway.show()
}}
>
<Icon name='bell' width={20} fill='#9DA4AE' />
</span>
<span id='headway'>
<span />
</span>
Expand Down
Loading