barsa-tiles 1.0.383 → 1.0.385
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/fesm2020/barsa-tiles.mjs
CHANGED
|
@@ -782,9 +782,10 @@ class TilePropPipe {
|
|
|
782
782
|
return data['DynamicCommand'];
|
|
783
783
|
}
|
|
784
784
|
const val = data.Component.Settings.TileSetting[prop];
|
|
785
|
-
if (
|
|
785
|
+
if (typeof val === 'undefined') {
|
|
786
786
|
return data.Component.Settings[prop];
|
|
787
787
|
}
|
|
788
|
+
return val;
|
|
788
789
|
}
|
|
789
790
|
return parameters ? parameters.TileSetting[prop] : '';
|
|
790
791
|
}
|