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 afef201 commit 7e751fcCopy full SHA for 7e751fc
tensorboard/webapp/metrics/store/metrics_store_internal_utils.ts
@@ -584,9 +584,7 @@ export function getMinMaxStepFromCardState(cardState: Partial<CardState>) {
584
585
const minStep = x[0] < x[1] ? x[0] : x[1];
586
const maxStep = minStep === x[0] ? x[1] : x[0];
587
- return (
588
- {minStep: Math.ceil(minStep), maxStep: Math.floor(maxStep)} || dataMinMax
589
- );
+ return {minStep: Math.ceil(minStep), maxStep: Math.floor(maxStep)};
590
}
591
592
export function getCardSelectionStateToBoolean(
0 commit comments