Skip to content

Commit

Permalink
Fix XO
Browse files Browse the repository at this point in the history
  • Loading branch information
OzzyCzech committed Dec 7, 2023
1 parent 2982d87 commit 17fe855
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/cmd-dialog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -318,16 +318,15 @@ export class CmdDialog extends LitElement {
* @private
*/
private _triggerAction(action?: Action, parentEvent?: KeyboardEvent | CustomEvent) {

const actionEvent = new CustomEvent('action', {
detail: {
search: this._search,
action,
parentEvent
parentEvent,
},
bubbles: true,
composed: true,
cancelable: true
cancelable: true,
});

if (action && this.dispatchEvent(actionEvent)) {
Expand Down

1 comment on commit 17fe855

@vercel
Copy link

@vercel vercel bot commented on 17fe855 Dec 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

cmd-dialog – ./

cmd-dialog.vercel.app
cmd-dialog-ozzyczech.vercel.app
cmd-dialog-git-main-ozzyczech.vercel.app

Please sign in to comment.