Hi,
I am trying to implement breadcrumbs in the powerapps portal, I add the following breadcrumb snippets into Layout 1 column web template.
<ul class=breadcrumb>
{% for crumb in page.breadcrumbs -%}
<li> <a href={{ crumb.url }}>{{ crumb.title }}</a> </li>
{% endfor -%}
<li class=active>{{ page.title }}</li>
</ul>
It shows the breadcrumbs correctly when I navigate to a different page, however when I try to navigate back to the parent page by clicking the breadcrumb, it doesn't go back to the parent page successfully. The reason was because the <a> tag constructed was missing the query parameter which identify the id.
/en-US/account-maintenance-form/?id=xxx
Is there any way to add the query param onto the breadcrumb.url?
Thanks,
Harry