Skip to content

Commit

Permalink
Fixed the issue that ground truth data weren't showing up properly (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
jryu01 authored Oct 7, 2024
1 parent 803b416 commit 7632232
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ const preparedCharts = computed(() => {
groundTruth = csvParse(csvRaw, autoType);
// Need to get the dataset's time field
const datasetTimeField = state.mapping.find((d) => d.modelVariable === 'timestamp')?.datasetVariable;
const datasetTimeField = state.timestampColName;
return selectedVariableSettings.value.map((setting) => {
const variable = setting.selectedVariables[0];
Expand Down

0 comments on commit 7632232

Please sign in to comment.