From fc77bfd29a4aa91dd4ee55db4f069ad318a0b0a3 Mon Sep 17 00:00:00 2001 From: Daren McCulley Date: Thu, 13 Jun 2019 13:28:27 -0400 Subject: [PATCH] fix(VDialog.js): fixed event variable ref in onFocusin --- packages/vuetify/src/components/VDialog/VDialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vuetify/src/components/VDialog/VDialog.js b/packages/vuetify/src/components/VDialog/VDialog.js index 44009a00fe3..7ea6922355c 100644 --- a/packages/vuetify/src/components/VDialog/VDialog.js +++ b/packages/vuetify/src/components/VDialog/VDialog.js @@ -197,7 +197,7 @@ export default { this.$emit('keydown', e) }, onFocusin (e) { - const { target } = event + const { target } = e if ( // It isn't the document or the dialog body