We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3d147b commit 5cf9fd6Copy full SHA for 5cf9fd6
1 file changed
test-result-summary-client/src/Dashboard/Widgets/Graph/Dacapo.jsx
@@ -65,7 +65,8 @@ export default class Dacapo extends Component {
65
66
// combine results having the same JDK build date
67
results.forEach((t, i) => {
68
- let jdkDate = t.jdkDate || (t.timestamp ? new Date(t.timestamp).toISOString().slice(0,10) : null);
+ //t.jdkDate is currently not in use
69
+ let jdkDate = (t.timestamp ? new Date(t.timestamp).toISOString().slice(0,10) : null);
70
if (t.buildResult !== 'SUCCESS' || !jdkDate) return;
71
jdkDate = ' ' + jdkDate.replaceAll('-', '');
72
resultsByJDKBuild[jdkDate] = resultsByJDKBuild[jdkDate] || [];
0 commit comments