Merge pull request #1290 from Bilb/fix-lightbox-size-big-pictures

pull/1293/head
Audric Ackermann 5 years ago committed by GitHub
commit 4c4c7795d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -28,7 +28,12 @@ describe('app/logging', () => {
afterEach(done => { afterEach(done => {
// we need the unsafe option to recursively remove the directory // we need the unsafe option to recursively remove the directory
tmpDir.removeCallback(done); try {
tmpDir.removeCallback(done);
} catch (e) {
// eslint-disable-next-line no-console
console.error('removeCallback failed with ', e);
}
}); });
describe('#isLineAfterDate', () => { describe('#isLineAfterDate', () => {

@ -56,6 +56,9 @@ const styles = {
paddingLeft: 40, paddingLeft: 40,
paddingRight: 40, paddingRight: 40,
paddingBottom: 0, paddingBottom: 0,
minHeight: 0,
overflow: 'hidden',
minWidth: 0,
} as React.CSSProperties, } as React.CSSProperties,
objectContainer: { objectContainer: {
position: 'relative', position: 'relative',

Loading…
Cancel
Save