@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.
@@ -2562,7 +2562,9 @@ var RAWidgetContainer = /** @class */ (function () {
2562
2562
  * @return {?}
2563
2563
  */
2564
2564
  function () {
2565
- if (this.widgetElement.titleLineEnabledFor1xView() && (this.height == 1 || this.width == 1))
2565
+ /** @type {?} */
2566
+ var titleLineEnabled1x = this.widgetElement.titleLineEnabledFor1xView();
2567
+ if (typeof (titleLineEnabled1x) != 'undefined' && titleLineEnabled1x && (this.height == 1 || this.width == 1))
2566
2568
  this.enableTitleLine = true;
2567
2569
  else
2568
2570
  this.enableTitleLine = this.enableTitleLineActual;