Skip to content

Commit

Permalink
Adds a more generic 'url' field to a MetricsDataSource
Browse files Browse the repository at this point in the history
  • Loading branch information
arcra committed Nov 28, 2024
1 parent dd0245d commit fe32c5d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tensorboard/webapp/experiments/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,14 @@ export declare interface MetricsDataSource {
name: string;
repo_id: string;
table_id: string;
// TODO: remove this field once it's not used. Use the more generic `url`
// field below.
//
// The Datatable UI url for for Datatable data source. Format:
// https://datatable/xid/{xid}/{table_path}
datatable_uri?: string;
// An (often external) url associated with this data source.
url?: string;
}

export interface ExperimentAlias {
Expand Down

0 comments on commit fe32c5d

Please sign in to comment.