mirror of
https://github.com/wassname/optuna-dashboard.git
synced 2026-09-09 11:28:14 +08:00
Fix type of datetime start complete
This commit is contained in:
@@ -261,8 +261,8 @@ const getTrials = (
|
||||
params: [], // Set this column later
|
||||
user_attrs: [], // Set this column later
|
||||
constraints: [],
|
||||
datetime_start: vals[3],
|
||||
datetime_complete: vals[4],
|
||||
datetime_start: new Date(vals[3]),
|
||||
datetime_complete: new Date(vals[4]),
|
||||
}
|
||||
trials.push(trial)
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user