Commit 01a6320a by qlintonger xeno

添加内容+3

parent b968459f
......@@ -42,8 +42,8 @@ const ps = defineProps({
const userDataForThis = computed(function () {
const userNow: any = userStates.value.onlineContacts.find((a: any) => a.fromID === ps.id);
return {
name: userNow.fromName || '--',
calling: userNow.callState !== 'calling'
name: userNow?.fromName || '--',
calling: userNow?.callState !== 'calling'
}
})
......
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