Skip to content

Commit eb99844

Browse files
author
Andrew Baldwin
committed
Fix modal max height
1 parent 50bf37e commit eb99844

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

Diff for: locust/webui/dist/assets/index-07a92637.js renamed to locust/webui/dist/assets/index-fd3e763b.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: locust/webui/dist/auth.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<meta name="theme-color" content="#000000" />
88

99
<title>Locust</title>
10-
<script type="module" crossorigin src="./assets/index-07a92637.js"></script>
10+
<script type="module" crossorigin src="./assets/index-fd3e763b.js"></script>
1111
</head>
1212
<body>
1313
<div id="root"></div>

Diff for: locust/webui/dist/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<meta name="theme-color" content="#000000" />
88

99
<title>Locust</title>
10-
<script type="module" crossorigin src="./assets/index-07a92637.js"></script>
10+
<script type="module" crossorigin src="./assets/index-fd3e763b.js"></script>
1111
</head>
1212
<body>
1313
<div id="root"></div>

Diff for: locust/webui/src/components/Modal/Modal.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ export default function Modal({ open, onClose, children }: IModal) {
1717
left: '50%',
1818
transform: 'translate(-50%, -50%)',
1919
width: 'md',
20+
maxHeight: '90vh',
21+
overflowY: 'auto',
2022
display: 'flex',
2123
flexDirection: 'column',
2224
rowGap: 2,

0 commit comments

Comments
 (0)