Fixed phone # formatting issues. BOD-308
This commit is contained in:
@@ -9,7 +9,10 @@ export function ChatOpenButton({ phone, jobid, openChatByPhone }) {
|
||||
return (
|
||||
<MessageFilled
|
||||
style={{ margin: 4 }}
|
||||
onClick={() => openChatByPhone({ phone_num: phone, jobid: jobid })}
|
||||
onClick={(e) => {
|
||||
e.stopPropagation();
|
||||
openChatByPhone({ phone_num: phone, jobid: jobid });
|
||||
}}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user