diff options
author | bobzel <zzzman@gmail.com> | 2022-08-22 17:28:45 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2022-08-22 17:28:45 -0400 |
commit | cfcff13b6a5acfd1299102716a3c9747b32a7e7a (patch) | |
tree | 5578bddc8bee2bb375c9b39ecbda99a0c12948b3 | |
parent | 653afba6635d676ec4fcdfa649360ca26c91cb88 (diff) |
from last
-rw-r--r-- | src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx index b34dad226..0234d303f 100644 --- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx +++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx @@ -1324,7 +1324,7 @@ export class CollectionFreeFormView extends CollectionSubView<Partial<collection x: NumCast(x), y: NumCast(y), z: Cast(z, 'number'), - backgroundColor: Cast(backgroundColor, 'string') ?? this.props.styleProvider?.(childDoc, this.props, StyleProp.BackgroundColor), + backgroundColor: Cast(backgroundColor, 'string') ? StrCast(backgroundColor) : this.props.styleProvider?.(childDoc, this.props, StyleProp.BackgroundColor), opacity: Cast(opacity, 'number') ?? this.props.styleProvider?.(childDoc, this.props, StyleProp.Opacity), zIndex: Cast(zIndex, 'number'), width: Cast(childDocLayout._width, 'number'), |