Skip to content

Commit dbcab1a

Browse files
fix: Maintain dynamicValues map while syncing component
1 parent a844700 commit dbcab1a

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

builder/utils.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ class Block:
5656
visibilityCondition: str | None = None
5757
elementBeforeConversion: str | None = None
5858
customAttributes: dict | None = None
59+
dynamicValues: list[BlockDataKey] | None = None
5960

6061
def __init__(self, **kwargs) -> None:
6162
for key, value in kwargs.items():
@@ -87,6 +88,7 @@ def as_dict(self):
8788
"visibilityCondition": self.visibilityCondition,
8889
"elementBeforeConversion": self.elementBeforeConversion,
8990
"customAttributes": self.customAttributes,
91+
"dynamicValues": self.dynamicValues,
9092
}
9193

9294

0 commit comments

Comments
 (0)