Skip to content

Commit

Permalink
use current run id
Browse files Browse the repository at this point in the history
  • Loading branch information
jamalc committed Feb 25, 2025
1 parent bbf1063 commit 634b8bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/Pages/Dashboard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export default function Dashboard({ modelname }) {
if (runDatesDict == {}) {
throw new Error("Could not find run dates for "+model.name);
}
let csv_filename = run_results[0].output_filename;
let csv_filename = run_results[currentRunId].output_filename;
if (csv_filename != null) {
setCurrentRunCompleted(true);
setOutputFilename(csv_filename);
Expand Down

0 comments on commit 634b8bf

Please sign in to comment.