Fix typing of user display prop

This commit is contained in:
rijkvanzanten
2020-08-12 13:28:04 -04:00
parent 36478133fd
commit 49b1f01a55

View File

@@ -44,7 +44,7 @@ export default defineComponent({
default: null,
},
display: {
type: String as PropType<'avatar' | 'name'>,
type: String as PropType<'avatar' | 'name' | 'both'>,
default: 'avatar',
},
circle: {