From fe32c5dd857e2dca5fca78daba72036179ec6a53 Mon Sep 17 00:00:00 2001 From: Adrian RC Date: Thu, 28 Nov 2024 01:21:31 +0000 Subject: [PATCH] Adds a more generic 'url' field to a MetricsDataSource --- tensorboard/webapp/experiments/types.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tensorboard/webapp/experiments/types.ts b/tensorboard/webapp/experiments/types.ts index 13b14f6e276..c0fc69768ad 100644 --- a/tensorboard/webapp/experiments/types.ts +++ b/tensorboard/webapp/experiments/types.ts @@ -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 {