From 1663fdb827bc1fd2e2021c9ddc422421e6a0584a Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Sun, 31 May 2020 23:18:48 +0200 Subject: [PATCH] fix: typo in method isInsideVue --- packages/sandbox-hooks/url-listeners.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sandbox-hooks/url-listeners.js b/packages/sandbox-hooks/url-listeners.js index 1c109f19103..e28c72cd7ec 100644 --- a/packages/sandbox-hooks/url-listeners.js +++ b/packages/sandbox-hooks/url-listeners.js @@ -25,7 +25,7 @@ function pathWithHash(location) { return `${location.pathname}${location.hash}`; } -function isInsiveVue(el) { +function isInsideVue(el) { if (el === document.body) return false return el.__vue__ || el._vnode || isInsideVue(el.parentElement) }