File tree Expand file tree Collapse file tree 1 file changed +23
-21
lines changed
ts/components/conversation Expand file tree Collapse file tree 1 file changed +23
-21
lines changed Original file line number Diff line number Diff line change @@ -2589,32 +2589,34 @@ export class Message extends React.PureComponent<Props, State> {
25892589 }
25902590
25912591 return (
2592- < div
2593- className = { classNames (
2594- 'AttachmentStatusIcon__circle-icon-container' ,
2595- isIncoming
2596- ? 'AttachmentStatusIcon__circle-icon-container--incoming'
2597- : null ,
2598- isDisabled
2599- ? 'AttachmentStatusIcon__circle-icon-container--disabled'
2600- : null
2601- ) }
2602- >
2592+ < div className = "AttachmentStatusIcon__container" >
26032593 < div
26042594 className = { classNames (
2605- 'AttachmentStatusIcon__circle-icon' ,
2606- isIncoming ? 'AttachmentStatusIcon__circle-icon--incoming' : null ,
2607- state === 'ready'
2608- ? 'module-message__tap-to-view__icon--ready'
2595+ 'AttachmentStatusIcon__circle-icon-container' ,
2596+ isIncoming
2597+ ? 'AttachmentStatusIcon__circle-icon-container--incoming'
26092598 : null ,
2610- state === 'outgoing'
2611- ? 'module-message__tap-to-view__icon--outgoing'
2612- : null ,
2613- state === 'viewed'
2614- ? 'module-message__tap-to-view__icon--viewed'
2599+ isDisabled
2600+ ? 'AttachmentStatusIcon__circle-icon-container--disabled'
26152601 : null
26162602 ) }
2617- />
2603+ >
2604+ < div
2605+ className = { classNames (
2606+ 'AttachmentStatusIcon__circle-icon' ,
2607+ isIncoming ? 'AttachmentStatusIcon__circle-icon--incoming' : null ,
2608+ state === 'ready'
2609+ ? 'module-message__tap-to-view__icon--ready'
2610+ : null ,
2611+ state === 'outgoing'
2612+ ? 'module-message__tap-to-view__icon--outgoing'
2613+ : null ,
2614+ state === 'viewed'
2615+ ? 'module-message__tap-to-view__icon--viewed'
2616+ : null
2617+ ) }
2618+ />
2619+ </ div >
26182620 </ div >
26192621 ) ;
26202622 }
You can’t perform that action at this time.
0 commit comments