Skip to content
Open
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 @@ -14,6 +14,7 @@
- Add an administrator action on the course settings page to refresh autotest schema (#7828)

### πŸ› Bug fixes
- Fixed missing translation for "in progress" status on the batch test runs table by removing redundant double-translation of the status value
- Prevent "No rows found" message from displaying in tables when data is loading (#7790)

### πŸ”§ Internal changes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ describe("For the TestRunTable's display of in_progress status", () => {
});

it("displays in progress status when a test is running", async () => {
const status = test_run_data[0]["test_runs.status"]; // "in progress"
const status = test_run_data[0]["test_runs.status"]; // "in_progress"
const statusKey = I18n.t(`automated_tests.test_runs_statuses.${status}`);

expect(statusKey).toEqual(I18n.t("automated_tests.test_runs_statuses.in_progress"));
Expand Down
1 change: 0 additions & 1 deletion app/javascript/Components/batch_test_run_table.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ class BatchTestRunTable extends React.Component {
);
// increment in_progress number for this batch_id
status[row.test_batch_id].in_progress += 1;
row.status = I18n.t("automated_tests.test_runs_statuses.in_progress");
} else {
row.time_to_completion = "";
row.action = "";
Expand Down
Loading