Update storyshots

This commit is contained in:
Florian Scholdei
2020-10-20 10:49:56 +02:00
parent 445d26e2b7
commit 5889bb0365
2 changed files with 892 additions and 6 deletions

View File

@@ -48,12 +48,14 @@ const OpenInFullscreenButton: FC<Props> = ({ modalTitle, modalBody }) => {
<Button title={t("diff.fullscreen.open")} className="button" onClick={() => setShowModal(true)}>
<i className="fas fa-search-plus" />
</Button>
{showModal && <FullscreenModal
title={modalTitle}
closeFunction={() => setShowModal(false)}
body={modalBody}
active={showModal}
/>}
{showModal && (
<FullscreenModal
title={modalTitle}
closeFunction={() => setShowModal(false)}
body={modalBody}
active={showModal}
/>
)}
</>
);
};