0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-12-01 12:21:02 +01:00

fix: Default Replay list duration (#17090)

This commit is contained in:
Ben White 2023-08-18 14:15:54 +01:00 committed by GitHub
parent b35a4c1dd7
commit 302930f189
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 1 additions and 7 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 73 KiB

After

Width:  |  Height:  |  Size: 73 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 77 KiB

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 77 KiB

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 73 KiB

After

Width:  |  Height:  |  Size: 73 KiB

View File

@ -50,7 +50,7 @@ export const PINNED_RECORDINGS_LIMIT = 100 // NOTE: This is high but avoids the
export const defaultRecordingDurationFilter: RecordingDurationFilter = {
type: PropertyFilterType.Recording,
key: 'duration',
value: 60,
value: 1,
operator: PropertyOperator.GreaterThan,
}
@ -67,12 +67,6 @@ export const DEFAULT_RECORDING_FILTERS: RecordingFilters = {
const DEFAULT_PERSON_RECORDING_FILTERS: RecordingFilters = {
...DEFAULT_RECORDING_FILTERS,
date_from: '-21d',
session_recording_duration: {
type: PropertyFilterType.Recording,
key: 'duration',
value: 1,
operator: PropertyOperator.GreaterThan,
},
}
const getDefaultFilters = (personUUID?: PersonUUID): RecordingFilters => {