|
@@ -190,7 +190,6 @@ export function OSCell({replay}: Props) {
|
|
<ContextIcon
|
|
<ContextIcon
|
|
name={name ?? ''}
|
|
name={name ?? ''}
|
|
version={version && hasRoomForColumns ? version : undefined}
|
|
version={version && hasRoomForColumns ? version : undefined}
|
|
- showVersion={false}
|
|
|
|
/>
|
|
/>
|
|
</Item>
|
|
</Item>
|
|
);
|
|
);
|
|
@@ -209,7 +208,6 @@ export function BrowserCell({replay}: Props) {
|
|
<ContextIcon
|
|
<ContextIcon
|
|
name={name ?? ''}
|
|
name={name ?? ''}
|
|
version={version && hasRoomForColumns ? version : undefined}
|
|
version={version && hasRoomForColumns ? version : undefined}
|
|
- showVersion={false}
|
|
|
|
/>
|
|
/>
|
|
</Item>
|
|
</Item>
|
|
);
|
|
);
|
|
@@ -226,36 +224,6 @@ export function DurationCell({replay}: Props) {
|
|
);
|
|
);
|
|
}
|
|
}
|
|
|
|
|
|
-export function RageClickCountCell({replay}: Props) {
|
|
|
|
- if (replay.is_archived) {
|
|
|
|
- return <Item isArchived />;
|
|
|
|
- }
|
|
|
|
- return (
|
|
|
|
- <Item data-test-id="replay-table-count-rage-clicks">
|
|
|
|
- {replay.count_rage_clicks ? (
|
|
|
|
- <Count>{replay.count_rage_clicks}</Count>
|
|
|
|
- ) : (
|
|
|
|
- <Count>0</Count>
|
|
|
|
- )}
|
|
|
|
- </Item>
|
|
|
|
- );
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-export function DeadClickCountCell({replay}: Props) {
|
|
|
|
- if (replay.is_archived) {
|
|
|
|
- return <Item isArchived />;
|
|
|
|
- }
|
|
|
|
- return (
|
|
|
|
- <Item data-test-id="replay-table-count-dead-clicks">
|
|
|
|
- {replay.count_dead_clicks ? (
|
|
|
|
- <Count>{replay.count_dead_clicks}</Count>
|
|
|
|
- ) : (
|
|
|
|
- <Count>0</Count>
|
|
|
|
- )}
|
|
|
|
- </Item>
|
|
|
|
- );
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
export function ErrorCountCell({replay}: Props) {
|
|
export function ErrorCountCell({replay}: Props) {
|
|
if (replay.is_archived) {
|
|
if (replay.is_archived) {
|
|
return <Item isArchived />;
|
|
return <Item isArchived />;
|