Skip to content

Commit

Permalink
Merge pull request #9 from mysterio7885/main-1
Browse files Browse the repository at this point in the history
Make search also search the name and source
  • Loading branch information
jaenster authored Dec 2, 2023
2 parents 149cfe4 + a8ff425 commit 8b46501
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -223,11 +223,11 @@ export default {
Source: source,
Type: type,
'Game Version': version,
searchText: JSON.stringify(data[key]).match(/[a-z0-9_]+/gi).join(' '),
state: {
open: false,
},
}, data[key]);
data[key].searchText = JSON.stringify(data[key]).match(/[a-z0-9_]+/gi).join(' ');
this.packets.push(data[key]);
for (let column in data[key]) {
Expand Down

0 comments on commit 8b46501

Please sign in to comment.