Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- Enable test results downloads through the API (#7754)
- Provide suggestions for partial student matching scans (#7760)
- Allow inactive students to join groups (#7757)
- Update autotest settings form UI (#7777)

### 🐛 Bug fixes

Expand Down
6 changes: 3 additions & 3 deletions app/javascript/Components/autotest_manager.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class AutotestManager extends React.Component {
items: {
"ui:placeholder": I18n.t("automated_tests.test_group", {count: 1}),
"ui:title": I18n.t("automated_tests.test_group", {count: 1}),
"ui:order": ["extra_info", "*"],
"ui:order": ["extra_info", "*", "feedback_file_names"],
"ui:options": {label: false},
category: {
"ui:title": I18n.t("automated_tests.category"),
Expand Down Expand Up @@ -76,6 +76,7 @@ class AutotestManager extends React.Component {
},
},
"ui:options": {label: false},
"ui:order": ["tester_type", "env_data", "test_data", "*"],
},
},
},
Expand Down Expand Up @@ -558,14 +559,13 @@ function AddButton(props) {
if (label) {
label = `${I18n.t("add")} ${label}`;
}
console.log(props);
return (
<div className="row">
<p className={`col-xs-3 col-xs-offset-9 text-right`}>
<button
type="button"
className={`btn btn-info btn-add col-xs-12`}
title={translateString(TranslatableString.AddButton)}
title={label || translateString(TranslatableString.AddButton)}
{...btnProps}
>
{label || <FontAwesomeIcon icon="fa-solid fa-add" />}
Expand Down
3 changes: 1 addition & 2 deletions spec/fixtures/files/automated_tests/minimal_testers.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
},
"test_data_categories": {
"type": "string",
"enum": [],
"enumNames": []
"enum": []
},
"extra_group_data": {},
"installed_testers": {
Expand Down