Skip to content

Commit

Permalink
Merge pull request #298 from Vafilor/feat/file.pagination
Browse files Browse the repository at this point in the history
fix: issue where workflow breadcrumbs did not navigate up correctly
  • Loading branch information
Vafilor authored Jul 22, 2021
2 parents 4ae63e1 + be5308c commit 27eb2fc
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 27eb2fc

Please sign in to comment.