From a856b98315aa8a7b46294ccc9ae07e355dded3c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romeo=20M=C3=A9ndez=20Fuentes?= <63832805+memotux@users.noreply.github.com> Date: Wed, 11 May 2022 12:02:45 -0600 Subject: [PATCH] (fix: #13154) v-ripple unhandled error --- ui/src/directives/Ripple.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/directives/Ripple.js b/ui/src/directives/Ripple.js index ebd27ab8a95..39965bdb321 100644 --- a/ui/src/directives/Ripple.js +++ b/ui/src/directives/Ripple.js @@ -62,7 +62,7 @@ function showRipple (evt, el, ctx, forceCenter) { } function updateModifiers (ctx, { modifiers, value, arg, instance }) { - const cfg = Object.assign({}, instance.$q.config.ripple, modifiers, value) + const cfg = Object.assign({}, instance?.$q?.config?.ripple, modifiers, value) ctx.modifiers = { early: cfg.early === true, stop: cfg.stop === true,