mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 14:26:34 +00:00
fix: hide sent message on compact mode once sent
This commit is contained in:
parent
c7cfa5d32b
commit
42c09c9f3a
@ -106,9 +106,10 @@ Item {
|
||||
|
||||
SentMessage {
|
||||
id: sentMessage
|
||||
visible: isCurrentUser && !timeout && isMessage && outgoingStatus !== "sent"
|
||||
anchors.verticalCenter: chatTime.verticalCenter
|
||||
anchors.left: chatTime.right
|
||||
anchors.rightMargin: 5
|
||||
anchors.leftMargin: 8
|
||||
}
|
||||
|
||||
Retry {
|
||||
|
@ -6,7 +6,7 @@ StyledText {
|
||||
id: sentMessage
|
||||
visible: isCurrentUser && !timeout && !isExpired && isMessage
|
||||
color: Style.current.darkGrey
|
||||
text: outgoingStatus == "sent" ?
|
||||
text: outgoingStatus === "sent" ?
|
||||
//% "Sent"
|
||||
qsTrId("status-sent") :
|
||||
//% "Sending..."
|
||||
|
Loading…
x
Reference in New Issue
Block a user