@schneideress/dashboardframework 0.0.208 → 0.0.209

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.
@@ -2773,7 +2773,9 @@
2773
2773
  * @return {?}
2774
2774
  */
2775
2775
  function () {
2776
- if (this.widgetElement.titleLineEnabledFor1xView() && (this.height == 1 || this.width == 1))
2776
+ /** @type {?} */
2777
+ var titleLineEnabled1x = this.widgetElement.titleLineEnabledFor1xView();
2778
+ if (typeof (titleLineEnabled1x) != 'undefined' && titleLineEnabled1x && (this.height == 1 || this.width == 1))
2777
2779
  this.enableTitleLine = true;
2778
2780
  else
2779
2781
  this.enableTitleLine = this.enableTitleLineActual;