|
@@ -39,6 +39,7 @@ type Props = {
|
|
|
emptyMessage?: ReactNode;
|
|
|
gridRows?: string;
|
|
|
onClickPlay?: (index: number) => void;
|
|
|
+ referrerLocation?: string;
|
|
|
showDropdownFilters?: boolean;
|
|
|
};
|
|
|
|
|
@@ -54,6 +55,7 @@ const ReplayTable = memo(
|
|
|
gridRows,
|
|
|
showDropdownFilters,
|
|
|
onClickPlay,
|
|
|
+ referrerLocation,
|
|
|
}: Props) => {
|
|
|
const routes = useRoutes();
|
|
|
const location = useLocation();
|
|
@@ -109,7 +111,10 @@ const ReplayTable = memo(
|
|
|
{replays?.map(
|
|
|
(replay: ReplayListRecord | ReplayListRecordWithTx, index: number) => {
|
|
|
return (
|
|
|
- <Row key={replay.id} isPlaying={index === selectedReplayIndex}>
|
|
|
+ <Row
|
|
|
+ key={replay.id}
|
|
|
+ isPlaying={index === selectedReplayIndex && referrerLocation !== 'replay'}
|
|
|
+ >
|
|
|
{visibleColumns.map(column => {
|
|
|
switch (column) {
|
|
|
case ReplayColumn.ACTIVITY:
|