restore tabIndex
This commit is contained in:
parent
92c9ba971e
commit
5cc38d0b4d
@ -118,7 +118,7 @@ const ChatListItem = (props: ChatListItemProps) => {
|
||||
role="button"
|
||||
aria-expanded={isCurrentChat}
|
||||
active={isCurrentChat}
|
||||
tabIndex={0}
|
||||
tabIndex={-1}
|
||||
accessKey={isPublicGroupChat(chat) ? TOGGLE_CHAT_PUB_AK : null}
|
||||
onClick={handleClickToggleChat}
|
||||
id="chat-toggle-button"
|
||||
|
@ -49,7 +49,7 @@ const ChatList: React.FC<ChatListProps> = ({ chats }) => {
|
||||
</Styled.Container>
|
||||
<Styled.ScrollableList
|
||||
role="tabpanel"
|
||||
tabIndex={-1}
|
||||
tabIndex={0}
|
||||
>
|
||||
<Styled.List>
|
||||
<TransitionGroup >
|
||||
|
Loading…
Reference in New Issue
Block a user