Commit 7e61e516 authored by Phil Hughes's avatar Phil Hughes

Merge branch 'ps-fix-prop-validation-award-path' into 'master'

Fix Vue prop error for awardPath

See merge request gitlab-org/gitlab!59417
parents 4b3a2942 0a49a84a
...@@ -125,9 +125,11 @@ export default { ...@@ -125,9 +125,11 @@ export default {
type: Boolean, type: Boolean,
required: true, required: true,
}, },
// This can be undefined when `canAwardEmoji` is false
awardPath: { awardPath: {
type: String, type: String,
required: true, required: false,
default: '',
}, },
}, },
computed: { computed: {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment