Skip to content

Commit

Permalink
fix: Fix staleness check (#27653)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
rafaeelaudibert and github-actions[bot] authored Jan 17, 2025
1 parent 7d00875 commit 9d8f4de
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 1 deletion.
Binary file modified frontend/__snapshots__/exporter-exporter--dashboard--dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const renderItemContents = ({
}): JSX.Element | string => {
const parsedLastSeen = (item as EventDefinition).last_seen_at ? dayjs((item as EventDefinition).last_seen_at) : null
const isStale =
listGroupType === TaxonomicFilterGroupType.Events && 'id' in item && !isDefinitionStale(item as EventDefinition)
listGroupType === TaxonomicFilterGroupType.Events && 'id' in item && isDefinitionStale(item as EventDefinition)

const isUnusedEventProperty =
(listGroupType === TaxonomicFilterGroupType.NumericalEventProperties ||
Expand Down

0 comments on commit 9d8f4de

Please sign in to comment.