From 89c49bc37b29607cdafb135d72d54c429abc1cc7 Mon Sep 17 00:00:00 2001 From: Stephan Lee Date: Wed, 17 Oct 2018 20:23:10 -0700 Subject: [PATCH] Fixed domain reset bug on charts refresh PR #1375 conflated the ideas and caused explicitly resetted the domain on any data fetch (even if it is already loaded). This will cause some other "regression" (typing on tag filter then deleting it quickly causes chart to not draw any axis) but it should be addressed in other PRs. --- .../tf_line_chart_data_loader/tf-line-chart-data-loader.html | 1 - 1 file changed, 1 deletion(-) diff --git a/tensorboard/components/tf_line_chart_data_loader/tf-line-chart-data-loader.html b/tensorboard/components/tf_line_chart_data_loader/tf-line-chart-data-loader.html index ceec79b054..ae8e548f91 100644 --- a/tensorboard/components/tf_line_chart_data_loader/tf-line-chart-data-loader.html +++ b/tensorboard/components/tf_line_chart_data_loader/tf-line-chart-data-loader.html @@ -212,7 +212,6 @@ }, setSeriesData(name, data) { - this._resetDomainOnNextLoad = true; this.$.chart.setSeriesData(name, data); },