Skip to content

Commit 047c3e6

Browse files
authored
! Fix top nav cannot search in new window (#8254)
1 parent a5b7e77 commit 047c3e6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/renderer/components/TopNav/TopNav.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,8 @@ function goToSearch(queryText, { event }) {
497497
time: searchSettings.value.time,
498498
type: searchSettings.value.type,
499499
duration: searchSettings.value.duration,
500-
features: searchSettings.value.features,
500+
// Array proxy cannot be cloned during IPC call
501+
features: [...searchSettings.value.features],
501502
},
502503
doCreateNewWindow,
503504
searchQueryText: queryText,

0 commit comments

Comments
 (0)