Fix thumbnail not filling entire space sometimes (#6709)
parent
8b18784116
commit
15ec9431be
|
@ -170,9 +170,11 @@ class Item extends React.PureComponent {
|
|||
if (originalWidth > originalHeight) {
|
||||
imageStyle.height = '100%';
|
||||
imageStyle.width = 'auto';
|
||||
imageStyle.minWidth = '100%';
|
||||
} else {
|
||||
imageStyle.height = 'auto';
|
||||
imageStyle.width = '100%';
|
||||
imageStyle.minHeight = '100%';
|
||||
}
|
||||
|
||||
imageStyle.top = vShift;
|
||||
|
|
Loading…
Reference in New Issue