fix(dynamicValues): unparsed Jinja string in absence of dynamic values in components#461
Merged
surajshetty3416 merged 6 commits intofrappe:developfrom Jan 13, 2026
Merged
Conversation
the issue occured because restting blocks did not remove dynamic values, so when a component was used in a page, all it's dynamic values are replicated into the block from the component. now while rendering the page, a block's dynamic values are calculated by combining the dynamic values of both the block and the reference block from the component from which it is derived and thus it results in replicated dynamic values. and while resolving the dynamic values the fallback value is recalculated twice and the last time it uses the result which was calculated previously.
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #461 +/- ##
===========================================
+ Coverage 49.26% 52.90% +3.64%
===========================================
Files 28 28
Lines 2176 2202 +26
===========================================
+ Hits 1072 1165 +93
+ Misses 1104 1037 -67 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Member
|
@stravo1 Let's add a couple of backend tests for this? |
Member
Author
sure 👍🏼 |
surajshetty3416
approved these changes
Jan 12, 2026
|
🎉 This PR is included in version 1.22.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
solves #460
the issue occurred because resetting blocks does not remove dynamic values, so when a component is used in a page, all it's dynamic values are replicated into the block from the component. now while rendering the page, a block's dynamic values are calculated by combining the dynamic values of both the block and the reference block from the component from which it is derived and thus it results in replicated dynamic values. and while resolving the dynamic values the fallback value is recalculated twice and the last time it uses the result which was calculated previously.