-
+
{ skip && skipIntervals.map(interval =>
(
({ currentLocation: state.location, time: state.time }))(SubHeader)
+const SubH = connectPlayer(state => ({ currentLocation: state.location }))(SubHeader)
export default React.memo(SubH)
diff --git a/frontend/app/components/Session_/TimeTable/BarRow.js b/frontend/app/components/Session_/TimeTable/BarRow.js
index fcadc8961..b53661403 100644
--- a/frontend/app/components/Session_/TimeTable/BarRow.js
+++ b/frontend/app/components/Session_/TimeTable/BarRow.js
@@ -39,6 +39,7 @@ const BarRow = ({ resource: { time, ttfb = 0, duration, key }, popup=false, time
@@ -81,4 +82,4 @@ const BarRow = ({ resource: { time, ttfb = 0, duration, key }, popup=false, time
BarRow.displayName = "BarRow";
-export default BarRow;
\ No newline at end of file
+export default BarRow;
diff --git a/frontend/app/components/shared/SharePopup/SharePopup.js b/frontend/app/components/shared/SharePopup/SharePopup.js
index e72a87056..a1dd59a4f 100644
--- a/frontend/app/components/shared/SharePopup/SharePopup.js
+++ b/frontend/app/components/shared/SharePopup/SharePopup.js
@@ -1,6 +1,7 @@
import React from 'react';
import { connect } from 'react-redux';
import { toast } from 'react-toastify';
+import { connectPlayer } from 'Player'
import withRequest from 'HOCs/withRequest';
import { Popup, Dropdown, Icon, Button } from 'UI';
import styles from './sharePopup.module.css';
@@ -9,6 +10,9 @@ import SessionCopyLink from './SessionCopyLink';
import Select from 'Shared/Select';
import { Tooltip } from 'react-tippy';
+@connectPlayer(state => ({
+ time: state.time,
+}))
@connect(state => ({
channels: state.getIn([ 'slack', 'list' ]),
tenantId: state.getIn([ 'user', 'account', 'tenantId' ]),