Skip to content

Commit 6241e9c

Browse files
committed
Lower case "u" in Ramp Up in UI (another one)
1 parent 21b8daf commit 6241e9c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Diff for: locust/webui/dist/assets/index-64fef90e.js renamed to locust/webui/dist/assets/index-07a92637.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-64fef90e.js"></script>
10+
<script type="module" crossorigin src="./assets/index-07a92637.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-64fef90e.js"></script>
10+
<script type="module" crossorigin src="./assets/index-07a92637.js"></script>
1111
</head>
1212
<body>
1313
<div id="root"></div>

Diff for: locust/webui/src/components/SwarmForm/SwarmEditForm.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function SwarmEditForm({ onSubmit, numUsers, spawnRate }: ISwarmForm) {
3535

3636
<TextField
3737
defaultValue={spawnRate || 1}
38-
label='Ramp Up (users started/second)'
38+
label='Ramp up (users started/second)'
3939
name='spawnRate'
4040
/>
4141

Diff for: locust/webui/src/components/SwarmForm/tests/SwarmEditForm.test.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ describe('SwarmEditForm', () => {
2929
fireEvent.change(getByLabelText('Number of users (peak concurrency)'), {
3030
target: { value: '5' },
3131
});
32-
fireEvent.change(getByLabelText('Ramp Up (users started/second)'), {
32+
fireEvent.change(getByLabelText('Ramp up (users started/second)'), {
3333
target: { value: '10' },
3434
});
3535

0 commit comments

Comments
 (0)