diff --git a/src/components/CallItem/index.js b/src/components/CallItem/index.js
index 8ae97a2d96..68de8d0e03 100644
--- a/src/components/CallItem/index.js
+++ b/src/components/CallItem/index.js
@@ -366,6 +366,7 @@ export default class CallItem extends Component {
countryCode={countryCode}
phoneNumber={phoneNumber}
currentLocale={currentLocale}
+ stopPropagation={false}
/>
{durationEl} | {dateEl}{statusEl}
diff --git a/src/components/ContactDisplay/index.js b/src/components/ContactDisplay/index.js
index 35adf381ab..9d506f9e90 100644
--- a/src/components/ContactDisplay/index.js
+++ b/src/components/ContactDisplay/index.js
@@ -52,6 +52,7 @@ export default function ContactDisplay({
selectClassName,
showPlaceholder,
brand,
+ stopPropagation,
}) {
let contentEl;
if (groupNumbers) {
@@ -132,6 +133,7 @@ export default function ContactDisplay({
dropdownAlign="left"
titleEnabled
noPadding
+ stopPropagation={stopPropagation}
/>
);
}
@@ -163,6 +165,7 @@ ContactDisplay.propTypes = {
selectClassName: PropTypes.string,
showPlaceholder: PropTypes.bool,
brand: PropTypes.string,
+ stopPropagation: PropTypes.bool,
};
ContactDisplay.defaultProps = {
className: undefined,
@@ -175,4 +178,5 @@ ContactDisplay.defaultProps = {
selectClassName: undefined,
showPlaceholder: true,
brand: undefined,
+ stopPropagation: true,
};
diff --git a/src/components/ConversationPanel/index.js b/src/components/ConversationPanel/index.js
index 83132e63e3..ef3ffa0578 100644
--- a/src/components/ConversationPanel/index.js
+++ b/src/components/ConversationPanel/index.js
@@ -183,6 +183,7 @@ class ConversationPanel extends Component {