We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80af915 commit 39d1f53Copy full SHA for 39d1f53
tensorboard/webapp/feature_flag/effects/feature_flag_effects.ts
@@ -47,8 +47,8 @@ export class FeatureFlagEffects {
47
48
if (features.forceSvg != null) {
49
this.forceSvgDataSource.updateForceSvgFlag(features.forceSvg);
50
- } else {
51
- features.forceSvg = this.forceSvgDataSource.getForceSvgFlag();
+ } else if (this.forceSvgDataSource.getForceSvgFlag()) {
+ features.forceSvg = true;
52
}
53
54
return partialFeatureFlagsLoaded({features});
0 commit comments