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 {
type: Boolean,
required: true,
},
// This can be undefined when `canAwardEmoji` is false
awardPath: {
type: String,
required: true,
required: false,
default: '',
},
},
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