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
Describe the bug
In recent releases the behaviour has changed. Originally breadcrumbs worked well with dynamic DIsplaynames
To Reproduce
Set breadcrumb Items property to use dynamic values from the form.
Table(
{
ItemKey: "1",
ItemDisplayName: "Work Order",
ItemClickable: true
},
{
ItemKey: "2",
ItemDisplayName: DataCardValue1.Value,
ItemClickable: true
},
{
ItemKey: "3",
ItemDisplayName: DataCardValue4.Selected.'Account Name',
ItemClickable: false
}
)
The result is:
...
Expected behavior
Breadcrumb should look like:
Work Order > SL19767 > Site4
Screenshots
Additional context
It appears breadcrumb is now looking at the max length of the dataverse field rather than the length of the current value to determine whether to overflow.
The text was updated successfully, but these errors were encountered:
Describe the bug
In recent releases the behaviour has changed. Originally breadcrumbs worked well with dynamic DIsplaynames
To Reproduce
Set breadcrumb Items property to use dynamic values from the form.
Table(
{
ItemKey: "1",
ItemDisplayName: "Work Order",
ItemClickable: true
},
{
ItemKey: "2",
ItemDisplayName: DataCardValue1.Value,
ItemClickable: true
},
{
ItemKey: "3",
ItemDisplayName: DataCardValue4.Selected.'Account Name',
ItemClickable: false
}
)
The result is:
...
Expected behavior
Breadcrumb should look like:
Work Order > SL19767 > Site4
Screenshots
Additional context
It appears breadcrumb is now looking at the max length of the dataverse field rather than the length of the current value to determine whether to overflow.
The text was updated successfully, but these errors were encountered: