fix(dashboard): filter on all properties (except on overview)

This commit is contained in:
Carl-Gerhard Lindesvärd
2025-12-09 13:43:00 +01:00
parent d2b22867b9
commit 8312556b38
3 changed files with 47 additions and 10 deletions

View File

@@ -88,13 +88,17 @@ export default function OverviewFilters({
</div>
<PropertiesCombobox
mode={mode}
exclude={[
'properties.*',
'name',
'duration',
'created_at',
'has_profile',
]}
exclude={
enableEventsFilter
? []
: [
'properties.*',
'name',
'duration',
'created_at',
'has_profile',
]
}
onSelect={(action) => {
setFilter(action.value, [], 'is');
}}