Forward Menu: Fix last entries not displaying fully (#3318)

This commit is contained in:
Alexander Zinchuk 2023-06-16 12:45:03 +02:00
parent 2d7d0ee3c9
commit 4da76aaf80
2 changed files with 6 additions and 1 deletions

View File

@ -8,6 +8,11 @@
}
}
&_slide {
display: flex;
flex-direction: column;
}
.modal-header {
display: flex;
align-items: center;

View File

@ -268,7 +268,7 @@ const ChatOrUserPicker: FC<OwnProps> = ({
onClose={onClose}
onCloseAnimationEnd={onCloseAnimationEnd}
>
<Transition activeKey={activeKey} name="slideFade">
<Transition activeKey={activeKey} name="slideFade" slideClassName="ChatOrUserPicker_slide">
{() => {
return activeKey === TOPIC_LIST_SLIDE ? renderTopicList() : renderChatList();
}}