File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
src/frontend/src/features/layouts/components/thread-view/components/thread-message Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ export const ThreadMessage = forwardRef<HTMLElement, ThreadMessageProps>(
6565
6666 const getRecipientDeliveryStatus = ( recipient : MessageRecipient ) : ContactChipDeliveryStatus | undefined => {
6767 // If the message has just been sent, it has not delivery status but for the sender it is useful to show that the message is being delivered
68- if ( message . is_sender && recipient . delivery_status === null ) {
68+ if ( message . is_sender && recipient . delivery_status === null && ! message . is_draft ) {
6969 return { 'status' : 'delivering' , 'timestamp' : null , 'message' : null } ;
7070 }
7171 switch ( recipient . delivery_status ) {
You can’t perform that action at this time.
0 commit comments