Commit 0a49a84a authored by Paul Slaughter's avatar Paul Slaughter

Fix Vue prop error for awardPath

This can be `undefined` if `canAwardEmoji` is false
parent 702a96b4
...@@ -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