Merge branch 'develop' into hooks-migration

This commit is contained in:
marcin mikołajczak
2024-10-08 16:28:57 +02:00
3 changed files with 4 additions and 4 deletions

View File

@ -175,7 +175,7 @@ const ScrollableList = React.forwardRef<Virtualizer<any, any>, IScrollableList>(
id={'parentRef' in props ? id : undefined}
className={listClassName}
style={{
height: !showLoading && data.length ? virtualizer.getTotalSize() : undefined,
height: (!showLoading || showPlaceholder) && data.length ? virtualizer.getTotalSize() : undefined,
width: '100%',
position: 'relative',
}}

View File

@ -410,8 +410,8 @@ const Status: React.FC<IStatus> = (props) => {
avatarSize={avatarSize}
items={(
<>
<StatusTypeIcon status={status} />
<StatusLanguagePicker status={status} />
<StatusTypeIcon status={actualStatus} />
<StatusLanguagePicker status={actualStatus} />
</>
)}
/>

View File

@ -166,7 +166,7 @@ const DetailedStatus: React.FC<IDetailedStatus> = ({
<StatusTypeIcon status={actualStatus} />
<StatusLanguagePicker status={status} showLabel />
<StatusLanguagePicker status={actualStatus} showLabel />
</HStack>
</HStack>
</div>