diff --git a/frontend/app/components/Session/Player/ReplayPlayer/PlayerBlockHeader.tsx b/frontend/app/components/Session/Player/ReplayPlayer/PlayerBlockHeader.tsx index ef769ec5f..b7060595b 100644 --- a/frontend/app/components/Session/Player/ReplayPlayer/PlayerBlockHeader.tsx +++ b/frontend/app/components/Session/Player/ReplayPlayer/PlayerBlockHeader.tsx @@ -116,13 +116,11 @@ function PlayerBlockHeader(props: any) { )} {_metaList.length > 0 && ( -
- -
+ )} {uiPlayerStore.showSearchEventsSwitchButton ? ( diff --git a/frontend/app/components/shared/SessionItem/MetaItem/MetaItem.tsx b/frontend/app/components/shared/SessionItem/MetaItem/MetaItem.tsx index 4812bd122..f661d8a77 100644 --- a/frontend/app/components/shared/SessionItem/MetaItem/MetaItem.tsx +++ b/frontend/app/components/shared/SessionItem/MetaItem/MetaItem.tsx @@ -19,11 +19,13 @@ export default function MetaItem(props: Props) { diff --git a/frontend/app/components/shared/SessionItem/SessionMetaList/SessionMetaList.tsx b/frontend/app/components/shared/SessionItem/SessionMetaList/SessionMetaList.tsx index 3c7608138..4f4c96578 100644 --- a/frontend/app/components/shared/SessionItem/SessionMetaList/SessionMetaList.tsx +++ b/frontend/app/components/shared/SessionItem/SessionMetaList/SessionMetaList.tsx @@ -8,13 +8,14 @@ interface Props { metaList: any[]; maxLength?: number; onMetaClick?: (meta: { name: string, value: string }) => void; + horizontal?: boolean; } export default function SessionMetaList(props: Props) { - const { className = '', metaList, maxLength = 14 } = props; + const { className = '', metaList, maxLength = 14, horizontal = false } = props; return ( -
+
{metaList.slice(0, maxLength).map(({ label, value }, index) => (
props.onMetaClick?.({ name: `_${label}`, value })}>