Skip to content

Commit

Permalink
Revert arrow function to traditional js to support IE11 (#522)
Browse files Browse the repository at this point in the history
Bug: T298238
  • Loading branch information
chukarave authored Jan 13, 2022
1 parent ddadab0 commit 9abf7da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vue-components/stories/Dialog.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export function complex( args: { title: string; actions: string; dismissButton:
:title="title"
ref="simple"
:actions="actions"
@action="(_, dialog) => dialog.hide()"
@action="function ( _, dialog ){ dialog.hide() }"
:dismiss-button="dismissButton"
:visible="visible"
>
Expand Down

0 comments on commit 9abf7da

Please sign in to comment.