Skip to content

Commit

Permalink
fix: issue where workflow breadcrumbs did not navigate up correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
Vafilor committed Jul 22, 2021
1 parent 70920f2 commit be5308c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/app/node-info/node-info.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -425,8 +425,6 @@ export class NodeInfoComponent implements OnInit, OnDestroy {

const preParts = prePath.split('/').filter(value => value !== '');
const parts = path.split('/').filter(value => value !== '');
let pathSum = '';


const pathParts: PathPart[] = [];
for (const part of preParts) {
Expand All @@ -439,6 +437,7 @@ export class NodeInfoComponent implements OnInit, OnDestroy {

pathParts[pathParts.length - 1].clickable = parts.length > 0;

let pathSum = prePath;
for (const part of parts) {
pathSum += '/' + part;

Expand Down

0 comments on commit be5308c

Please sign in to comment.