@flexem/fc-gui 3.0.0-alpha.65 → 3.0.0-alpha.66

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -268,4 +268,10 @@
268
268
  ### Web端
269
269
  #### Bug Fix
270
270
  1. FLEXCLOUD-2487: 【线上问题】数据库连接池占满导致无响应的问题
271
- - 修改清除定时器的方法
271
+ - 修改清除定时器的方法
272
+
273
+ ## 3.0.0-alpha.66(2023-03-01)
274
+ ### Web端
275
+ #### Bug Fix
276
+ 1. FLEXCLOUD-2487: 【线上问题】数据库连接池占满导致无响应的问题
277
+ - 去掉没有位置信息时的定时器
@@ -39607,7 +39607,6 @@ class weater_element_WeatherElement extends conditional_display_element_Conditio
39607
39607
  }
39608
39608
  dispose() {
39609
39609
  clearInterval(this.timer);
39610
- clearTimeout(this.gettingAddressTimer);
39611
39610
  }
39612
39611
  initWeatherInfo() {
39613
39612
  this.clear();
@@ -39639,8 +39638,6 @@ class weater_element_WeatherElement extends conditional_display_element_Conditio
39639
39638
  }
39640
39639
  handleGettingAddress() {
39641
39640
  this.handleUnusualCommon(this.localization.weatherNotAvailable);
39642
- clearTimeout(this.gettingAddressTimer);
39643
- this.gettingAddressTimer = setTimeout(() => this.initWeatherInfo(), 1000 * 60);
39644
39641
  }
39645
39642
  handleNoAddress() {
39646
39643
  this.handleUnusualCommon(this.localization.weatherNotAddress);
@@ -39846,7 +39843,6 @@ class air_quality_element_AirQualityElement extends conditional_display_element_
39846
39843
  }
39847
39844
  dispose() {
39848
39845
  clearInterval(this.timer);
39849
- clearTimeout(this.gettingAddressTimer);
39850
39846
  }
39851
39847
  initAirQualityInfo() {
39852
39848
  this.clear();
@@ -39898,8 +39894,6 @@ class air_quality_element_AirQualityElement extends conditional_display_element_
39898
39894
  }
39899
39895
  handleGettingAddress() {
39900
39896
  this.handleUnusualCommon(this.localization.airQualityNotAvailable);
39901
- clearTimeout(this.gettingAddressTimer);
39902
- this.gettingAddressTimer = setTimeout(() => this.initAirQualityInfo(), 1000 * 60);
39903
39897
  }
39904
39898
  handleNoAddress() {
39905
39899
  this.handleUnusualCommon(this.localization.airQualityNotAddress);