Merge branch 'develop' into hooks-migration
This commit is contained in:
@ -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',
|
||||
}}
|
||||
|
||||
@ -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} />
|
||||
</>
|
||||
)}
|
||||
/>
|
||||
|
||||
@ -166,7 +166,7 @@ const DetailedStatus: React.FC<IDetailedStatus> = ({
|
||||
|
||||
<StatusTypeIcon status={actualStatus} />
|
||||
|
||||
<StatusLanguagePicker status={status} showLabel />
|
||||
<StatusLanguagePicker status={actualStatus} showLabel />
|
||||
</HStack>
|
||||
</HStack>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user