Skip to content

Commit

Permalink
fix tag search in report
Browse files Browse the repository at this point in the history
  • Loading branch information
cenfun committed Jun 20, 2024
1 parent b85a675 commit 46984b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/app/src/components/report/report.vue
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ const timelineHandler = () => {
const onTagClick = (tag) => {
state.flyoverVisible = false;
state.caseType = 'tests';
state.keywords = `@${tag.name}`;
state.keywords = `${tag.name}`;
updateGrid();
};
Expand Down

0 comments on commit 46984b7

Please sign in to comment.