From 54b269cbc5998c16deba0e51cee9ba769986cc00 Mon Sep 17 00:00:00 2001 From: Brian Dubois Date: Tue, 26 Mar 2024 13:25:48 -0400 Subject: [PATCH] Hparams: Fix regression in column selector. (#6811) Ensure the following properties are passed to the column selector from the data table: ``` [numColumnsLoaded]="numColumnsLoaded" [hasMoreColumnsToLoad]="hasMoreColumnsToLoad" (loadAllColumns)="loadAllColumns.emit()" ``` These were accidentally removed in #6799. Caught by internal tests. --- .../webapp/widgets/data_table/data_table_component.ng.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tensorboard/webapp/widgets/data_table/data_table_component.ng.html b/tensorboard/webapp/widgets/data_table/data_table_component.ng.html index 656572537e0..9fea50b51f8 100644 --- a/tensorboard/webapp/widgets/data_table/data_table_component.ng.html +++ b/tensorboard/webapp/widgets/data_table/data_table_component.ng.html @@ -27,7 +27,10 @@