CE-798 fix launching processes, because somehow that broke in here...

This commit is contained in:
2024-02-01 21:05:35 -06:00
parent ac97ac016d
commit 585294c06d
3 changed files with 63 additions and 40 deletions

View File

@ -92,11 +92,22 @@ function QBreadcrumbs({icon, title, route, light}: Props): JSX.Element
let accumulatedPath = "";
for (let i = 0; i < routes.length; i++)
{
////////////////////////////////////////////////////////
// avoid showing "saved view" as a breadcrumb element //
////////////////////////////////////////////////////////
if(routes[i] === "savedView")
{
continue;
}
///////////////////////////////////////////////////////////////////////
// avoid showing the table name if it's the element before savedView //
///////////////////////////////////////////////////////////////////////
if(i < routes.length - 1 && routes[i+1] == "savedView")
{
continue;
}
if(routes[i] === "")
{
continue;