From 5ceb1e641f3db70beaad55a8b6534a611544de12 Mon Sep 17 00:00:00 2001 From: wmwragg <wm.wragg@gmail.com> Date: Thu, 15 Sep 2016 15:34:11 +0100 Subject: [PATCH] Placing the incomingCallBox in the sticky element, so it sticks when the header sticks --- src/components/structures/RoomSubList.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/structures/RoomSubList.js b/src/components/structures/RoomSubList.js index 16491d49..7684b344 100644 --- a/src/components/structures/RoomSubList.js +++ b/src/components/structures/RoomSubList.js @@ -446,11 +446,11 @@ var RoomSubList = React.createClass({ <div className="mx_RoomSubList_labelContainer" title={ title } ref="header"> <div onClick={ this.onClick } className="mx_RoomSubList_label"> { this.props.collapsed ? '' : this.props.label } - <div className="mx_RoomSubList_roomCount">{roomCount}</div> + <div className="mx_RoomSubList_roomCount">{ roomCount }</div> <div className={chevronClasses}></div> - {badge} + { badge } + { incomingCall } </div> - { incomingCall } </div> ); },