This commit is contained in:
ludwiczakpawel 2021-02-16 15:50:37 +01:00 committed by GitHub
parent fb88d94b39
commit 74894fd90e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 7 deletions

View file

@ -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"

View file

@ -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"