Skip to content

Commit

Permalink
Merge pull request #36 from venkykandagaddala/GCP-fixes
Browse files Browse the repository at this point in the history
Bug fix - KB-5862 (Discussion link in footer)
  • Loading branch information
vishnubansaltarento authored Aug 27, 2024
2 parents 26ab2e2 + cdd0aaf commit 3063e06
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,11 +117,11 @@ <h4 class="footer_heading mat-subheading-1 margin-bottom-m">
<ul>
<ng-container *ngFor="let hub of (hubsList || [])">
<li>
<ng-container *ngIf="hub.hubname == ('discuss' || 'Learn' || 'Network')">
<ng-container *ngIf="hub.hubname === 'Discuss'">
<a class="footer_sub_text mat-body cursor-pointer" (click)="navigate()">{{
translateLabels(hub.hubname, 'common') }}</a>
translateLabels(hub.hubname.toLowerCase(), 'common') }}</a>
</ng-container>
<ng-container *ngIf="hub.hubname != ('discuss' || 'Learn' || 'Network')">
<ng-container *ngIf="hub.hubname !== 'Discuss'">
<a class="footer_sub_text mat-body cursor-pointer" [routerLink]="hub.path">{{
translateLabelsWithSpace(hub.hubname, 'common') }}</a>
</ng-container>
Expand Down

0 comments on commit 3063e06

Please sign in to comment.