mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-22 12:09:21 +00:00
Fix null issue
This commit is contained in:
parent
5056b07ddf
commit
83580fd627
@ -81,7 +81,7 @@ const ConversationsInterface = {
|
|||||||
name: infos.conversationName,
|
name: infos.conversationName,
|
||||||
follow : infos.follow,
|
follow : infos.follow,
|
||||||
users: infos.users,
|
users: infos.users,
|
||||||
color: infos.color.replace("#", "").toUpperCase(),
|
color: infos.color == null ? "" : infos.color.replace("#", "").toUpperCase(),
|
||||||
canEveryoneAddMembers: infos.allowEveryoneToAddMembersInput
|
canEveryoneAddMembers: infos.allowEveryoneToAddMembersInput
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user