diff --git a/webapp/channels/src/components/post_view/post_time/post_time.tsx b/webapp/channels/src/components/post_view/post_time/post_time.tsx index f66ea841f9..470ff931c8 100644 --- a/webapp/channels/src/components/post_view/post_time/post_time.tsx +++ b/webapp/channels/src/components/post_view/post_time/post_time.tsx @@ -7,9 +7,8 @@ import {Link} from 'react-router-dom'; import * as GlobalActions from 'actions/global_actions'; -import OverlayTrigger from 'components/overlay_trigger'; import Timestamp, {RelativeRanges} from 'components/timestamp'; -import Tooltip from 'components/tooltip'; +import WithTooltip from 'components/with_tooltip'; import {Locations} from 'utils/constants'; import {isMobile} from 'utils/user_agent'; @@ -94,25 +93,20 @@ export default class PostTime extends React.PureComponent { ); return ( - - - + id={eventTime.toString()} + title={ + } > {content} - + ); } }