Skip to content

Commit

Permalink
APPEALS-55086 Assist with linting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
msteele96 committed Sep 5, 2024
1 parent 62afefb commit c8af57c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion client/app/constants/LoadTestScenarios.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
{"scenario": "v2MetricLogs",
"targetType": [{
"value": "metric",
"label": "Metrics"
"label": "Metric"
}],
"targetId": ""
},
Expand Down
6 changes: 3 additions & 3 deletions client/app/styles/_load_tests.scss
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
.load-test-container{
.load-test-container {
display: flex;
flex-wrap: wrap;
}

.load-test-container-checkbox{
.load-test-container-checkbox {
width: 30%;
box-sizing: border-box;
flex-grow: 1;
margin-inline: 1%
margin-inline: 1%;
}

6 changes: 3 additions & 3 deletions client/app/test/loadTest/LoadTest.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ export default function LoadTest(props) {
<AppSegment filledBackground>
<h1>Test Target Configuration</h1>
<UserConfiguration {...props} />
<br/>
<br />
<h2>Scenario Groups</h2>
<ScenarioConfigurations/>
<ScenarioConfigurations />
</AppSegment>
<div { ...css({ overflow: 'hidden' }) }>
<div {...css({ overflow: 'hidden' })}>
<Button
id="Cancel"
name="Cancel"
Expand Down
2 changes: 1 addition & 1 deletion client/app/test/loadTest/ScenarioConfiguration.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default function ScenarioConfiguration(props) {
options={targetType}
isClearable
/>
<br/>
<br />
<TextField
name="testTargetID"
label="Target Type ID"
Expand Down

0 comments on commit c8af57c

Please sign in to comment.