Commit bf8d6dc6 authored by v-liguo's avatar v-liguo
Browse files

update

parent 87608f3e
......@@ -30,7 +30,12 @@ class IntermediateVal extends React.Component<IntermediateValProps, {}> {
}
}
if (status === 'SUCCEEDED') {
result = `${result} (FINAL)`;
// some trial haven't final result
if (record.acc !== undefined) {
if (record.acc.default !== undefined) {
result = `${result} (FINAL)`;
}
}
} else {
result = `${result} (LATEST)`;
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment