File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
tensorboard/webapp/feature_flag Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -130,6 +130,11 @@ export const FeatureFlagMetadataMap: FeatureFlagMetadataMapType<FeatureFlags> =
130
130
queryParamOverride : 'enableScalarColumnCustomization' ,
131
131
parseValue : parseBoolean ,
132
132
} ,
133
+ enableHparamsInTimeSeries : {
134
+ defaultValue : false ,
135
+ queryParamOverride : 'enableHparamsInTimeSeries' ,
136
+ parseValue : parseBoolean ,
137
+ } ,
133
138
} ;
134
139
135
140
/**
Original file line number Diff line number Diff line change @@ -54,4 +54,6 @@ export interface FeatureFlags {
54
54
// Adds affordance for users to select and reorder the columns in the Scalar
55
55
// Card Data Table
56
56
enableScalarColumnCustomization : boolean ;
57
+ // Adds hparam columns to the runs table and the scalar card data table.
58
+ enableHparamsInTimeSeries : boolean ;
57
59
}
You can’t perform that action at this time.
0 commit comments