Skip to content

Commit

Permalink
chore: fix inspector item expansion (#20111)
Browse files Browse the repository at this point in the history
  • Loading branch information
daibhin authored Feb 5, 2024
1 parent feb8986 commit 4a27368
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export const playerInspectorLogic = kea<playerInspectorLogicType>([
connect((props: PlayerInspectorLogicProps) => ({
actions: [
playerSettingsLogic,
['setTab', 'setMiniFilter', 'setSyncScroll'],
['setTab', 'setMiniFilter', 'setSyncScroll', 'setSearchQuery'],
eventUsageLogic,
['reportRecordingInspectorItemExpanded'],
sessionRecordingDataLogic(props),
Expand Down Expand Up @@ -150,6 +150,8 @@ export const playerInspectorLogic = kea<playerInspectorLogicType>([

setTab: () => [],
setMiniFilter: () => [],
setSearchQuery: () => [],
setWindowIdFilter: () => [],
},
],

Expand Down

0 comments on commit 4a27368

Please sign in to comment.