diff --git a/src/app/mainview/components/AccountComboBox.qml b/src/app/mainview/components/AccountComboBox.qml
index 3ced4196523b263ece9f4ff65c0c391685448739..eebfc073030e9e117971abe0c599a12a4fd3c677 100644
--- a/src/app/mainview/components/AccountComboBox.qml
+++ b/src/app/mainview/components/AccountComboBox.qml
@@ -131,6 +131,8 @@ Label {
                 Layout.alignment: Qt.AlignLeft | Qt.AlignVCenter
 
                 text: CurrentAccount.bestName
+                textFormat: TextEdit.PlainText
+
                 font.pointSize: JamiTheme.textFontSize
                 color: JamiTheme.textColor
                 elide: Text.ElideRight
@@ -145,6 +147,8 @@ Label {
                 visible: text.length && text !== bestNameText.text
 
                 text:  CurrentAccount.bestId
+                textFormat: TextEdit.PlainText
+
                 font.pointSize: JamiTheme.textFontSize
                 color: JamiTheme.faddedLastInteractionFontColor
                 elide: Text.ElideRight
diff --git a/src/app/mainview/components/AccountComboBoxPopup.qml b/src/app/mainview/components/AccountComboBoxPopup.qml
index 027fa6037887cf98946764189555ed8b37f1b96e..f5e386384d98589d081f23fcccbbd8c24d202b8a 100644
--- a/src/app/mainview/components/AccountComboBoxPopup.qml
+++ b/src/app/mainview/components/AccountComboBoxPopup.qml
@@ -84,6 +84,7 @@ Popup {
                 Text {
                     anchors.centerIn: parent
                     text: JamiStrings.addAccount + "+"
+                    textFormat: TextEdit.PlainText
                     color: JamiTheme.textColor
                     font.pointSize: JamiTheme.textFontSize
                 }
diff --git a/src/app/mainview/components/AccountItemDelegate.qml b/src/app/mainview/components/AccountItemDelegate.qml
index fadb237c76fec4f068f0293d5bb038ac6f2921df..9f5dc0c0618e3e15daec219eac862353ab8eb82c 100644
--- a/src/app/mainview/components/AccountItemDelegate.qml
+++ b/src/app/mainview/components/AccountItemDelegate.qml
@@ -70,6 +70,8 @@ ItemDelegate {
                 Layout.alignment: Qt.AlignLeft | Qt.AlignVCenter
 
                 text: Alias
+                textFormat: TextEdit.PlainText
+
                 font.pointSize: JamiTheme.textFontSize
                 color: JamiTheme.textColor
                 elide: Text.ElideRight
@@ -82,6 +84,8 @@ ItemDelegate {
                 visible: text.length && Alias != Username
 
                 text: Username
+                textFormat: TextEdit.PlainText
+
                 font.pointSize: JamiTheme.textFontSize
                 color: JamiTheme.faddedLastInteractionFontColor
                 elide: Text.ElideRight
diff --git a/src/app/mainview/components/SmartListItemDelegate.qml b/src/app/mainview/components/SmartListItemDelegate.qml
index c5f11d6121bf5e2967a5d47cf42aeb31be3e0a1f..90a5921560fe6f1fe0b4601ec3f9e18c7e14ee33 100644
--- a/src/app/mainview/components/SmartListItemDelegate.qml
+++ b/src/app/mainview/components/SmartListItemDelegate.qml
@@ -110,6 +110,7 @@ ItemDelegate {
                 Layout.alignment: Qt.AlignVCenter
                 elide: Text.ElideMiddle
                 text: Title === undefined ? "" : Title
+                textFormat: TextEdit.PlainText
                 font.pointSize: JamiTheme.smartlistItemFontSize
                 font.weight: UnreadMessagesCount ? Font.Bold : Font.Normal
                 color: JamiTheme.textColor
@@ -127,6 +128,7 @@ ItemDelegate {
                 Text {
                     Layout.alignment: Qt.AlignVCenter
                     text: LastInteractionDate === undefined ? "" : LastInteractionDate
+                    textFormat: TextEdit.PlainText
                     font.pointSize: JamiTheme.smartlistItemInfoFontSize
                     font.weight: UnreadMessagesCount ? Font.DemiBold : Font.Normal
                     color: JamiTheme.textColor
@@ -140,6 +142,7 @@ ItemDelegate {
                     text: Draft ?
                               Draft :
                               (LastInteraction === undefined ? "" : LastInteraction)
+                    textFormat: TextEdit.PlainText
                     font.pointSize: JamiTheme.smartlistItemInfoFontSize
                     font.weight: UnreadMessagesCount ? Font.Normal : Font.Light
                     font.hintingPreference: Font.PreferNoHinting
@@ -157,6 +160,7 @@ ItemDelegate {
                 Layout.preferredHeight: 20
                 Layout.alignment: Qt.AlignVCenter
                 text: JamiStrings.banned
+                textFormat: TextEdit.PlainText
                 visible: IsBanned
                 font.pointSize: JamiTheme.smartlistItemFontSize
                 font.weight: Font.Bold
@@ -189,6 +193,7 @@ ItemDelegate {
                 Layout.preferredHeight: 20
                 Layout.alignment: Qt.AlignRight
                 text: InCall ? UtilsAdapter.getCallStatusStr(CallState) : ""
+                textFormat: TextEdit.PlainText
                 font.pointSize: JamiTheme.smartlistItemInfoFontSize
                 font.weight: Font.Medium
                 color: JamiTheme.textColor