From 33798ee986cbd9b98f6585422610f19f6f857917 Mon Sep 17 00:00:00 2001 From: Adrian RC Date: Tue, 10 Dec 2024 23:34:30 +0000 Subject: [PATCH] Deletes deprecated field and updates comment for data source url. --- tensorboard/webapp/experiments/types.ts | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/tensorboard/webapp/experiments/types.ts b/tensorboard/webapp/experiments/types.ts index c0fc69768a..54e5dd7d3b 100644 --- a/tensorboard/webapp/experiments/types.ts +++ b/tensorboard/webapp/experiments/types.ts @@ -42,13 +42,9 @@ 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. + // An arbitrary url associated with this data source. + // It would often be a link to another tool where the data can be viewed, but + // it could also just point to some documentation, or something else relevant. url?: string; }