Skip to content

Commit

Permalink
fix: deal with change to event (#831)
Browse files Browse the repository at this point in the history
  • Loading branch information
gtk-grafana authored Oct 17, 2024
1 parent f5d063a commit fffcd0d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ export class PatternsFrameScene extends SceneObjectBase<PatternsFrameSceneState>
targetBlank: false,
onClick: (event) => {
onPatternClick({
pattern: event.origin.name,
pattern: event.origin.labels.name,
type: 'include',
indexScene: logExploration,
});
Expand All @@ -204,7 +204,7 @@ export class PatternsFrameScene extends SceneObjectBase<PatternsFrameSceneState>
targetBlank: false,
onClick: (event) => {
onPatternClick({
pattern: event.origin.name,
pattern: event.origin.labels.name,
type: 'exclude',
indexScene: logExploration,
});
Expand Down

0 comments on commit fffcd0d

Please sign in to comment.