Skip to content

Commit

Permalink
Chore: Fix internal sync (#6566)
Browse files Browse the repository at this point in the history
  • Loading branch information
rileyajones authored Sep 5, 2023
1 parent 5961c76 commit eaab3eb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tensorboard/webapp/runs/effects/runs_effects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,12 @@ export class RunsEffects {
this.maybeFetchHparamsMetadata(experimentId),
]).pipe(
map(([runs, metadata]) => {
return {fromRemote: true, experimentId, runs, metadata};
return {
fromRemote: true,
experimentId,
runs: runs as Run[],
metadata: metadata as HparamsAndMetadata,
};
})
);
}
Expand Down

0 comments on commit eaab3eb

Please sign in to comment.