We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b6e423 commit 5032036Copy full SHA for 5032036
projects/angular-ui/src/lib/system-header/system-header.component.ts
@@ -124,10 +124,10 @@ export class BaoSystemHeaderComponent implements AfterViewInit, OnInit {
124
if (this.textContainerChildren[0].className == 'bao-breadcrumb') {
125
// Retrieve link of parent page
126
const breadcrumbElementsList =
127
- this.textContainerChildren[0].children[0].children[0];
+ this.textContainerChildren[0].children[0];
128
const breadcrumbLength = breadcrumbElementsList.children.length;
129
const parentLink =
130
- breadcrumbElementsList.children[breadcrumbLength - 2].children[0]
+ breadcrumbElementsList.children[breadcrumbLength - 2]
131
.attributes['href'].value;
132
// Remove Breadcrumb component and replace it with back button
133
this.renderer.removeChild(
0 commit comments