Skip to content

Commit eaab3eb

Browse files
authored
1 parent 5961c76 commit eaab3eb

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tensorboard/webapp/runs/effects/runs_effects.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,12 @@ export class RunsEffects {
296296
this.maybeFetchHparamsMetadata(experimentId),
297297
]).pipe(
298298
map(([runs, metadata]) => {
299-
return {fromRemote: true, experimentId, runs, metadata};
299+
return {
300+
fromRemote: true,
301+
experimentId,
302+
runs: runs as Run[],
303+
metadata: metadata as HparamsAndMetadata,
304+
};
300305
})
301306
);
302307
}

0 commit comments

Comments
 (0)