You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a confusing UX edge case with URL preview in initial URL drilldown implementation #69409
When drilldown is created, editor component doesn't know much about underlying data shape.
In preview it just relies on typescript shape of trigger's context.
Edge cases that we don't cover:
Array of points: ({{event.points}}). The number of points in the array in preview could be different from runtime
Different types. For example: {{event.from}} could be a date or a number. In preview we assume it is date. In runtime it could be a number
Impossible to test against conditions.
In this issue I explained this edge cases in details: #76226
We should explore if we could solve this by:
Providing samples of trigger context to drilldown editor
Relying on more detailed triggers instead of generic value_click and range_select
Now mock values are hardcoded, but we could allow users to manually edit those to test out different scenarios. This would be especially useful when we create a drilldown template (no access to real data on this point). @Dosant: to link an issue
The text was updated successfully, but these errors were encountered:
Part of #55324
There is a confusing UX edge case with URL preview in initial URL drilldown implementation #69409
When drilldown is created, editor component doesn't know much about underlying data shape.
In preview it just relies on typescript shape of trigger's context.
Edge cases that we don't cover:
points
: ({{event.points}}
). The number of points in the array in preview could be different from runtime{{event.from}}
could be a date or a number. In preview we assume it is date. In runtime it could be a numberIn this issue I explained this edge cases in details: #76226
We should explore if we could solve this by:
value_click
andrange_select
The text was updated successfully, but these errors were encountered: