bugfix (#12703)
This commit is contained in:
parent
fb88d94b39
commit
74894fd90e
2 changed files with 5 additions and 7 deletions
|
|
@ -1823,11 +1823,9 @@ export class Chat extends Component {
|
|||
return (
|
||||
<div
|
||||
id="message"
|
||||
className={
|
||||
showDeleteModal
|
||||
? 'message__delete__modal crayons-modal crayons-modal--s absolute'
|
||||
: 'message__delete__modal message__delete__modal__hide crayons-modal crayons-modal--s absolute'
|
||||
}
|
||||
className={`message__delete__modal crayons-modal crayons-modal--s ${
|
||||
!showDeleteModal && 'hidden'
|
||||
}`}
|
||||
aria-hidden={showDeleteModal}
|
||||
aria-label="delete confirmation"
|
||||
role="dialog"
|
||||
|
|
|
|||
|
|
@ -50,8 +50,8 @@ export function ChannelButton(props) {
|
|||
key={channel.id}
|
||||
className={
|
||||
discoverableChannel
|
||||
? 'chatchanneltab chatchanneltab--inactive crayons-btn--ghost'
|
||||
: `chatchanneltab ${otherClassname} chatchanneltab--${newMessagesIndicator} crayons-btn--ghost`
|
||||
? 'chatchanneltab chatchanneltab--inactive crayons-btn--ghost align-left'
|
||||
: `chatchanneltab ${otherClassname} chatchanneltab--${newMessagesIndicator} crayons-btn--ghost align-left`
|
||||
}
|
||||
onClick={discoverableChannel ? triggerActiveContent : handleSwitchChannel}
|
||||
data-content="sidecar-channel-request"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue