Skip to content

Commit

Permalink
(fix: quasarframework#13154) v-ripple unhandled error
Browse files Browse the repository at this point in the history
  • Loading branch information
memotux committed May 11, 2022
1 parent 6a43413 commit a856b98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/directives/Ripple.js
Expand Up @@ -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,
Expand Down

0 comments on commit a856b98

Please sign in to comment.