-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Doc run-through updates, fix typeahead and table sizes, add help (#84)
* Update app name to be per org * Fix repo switcher not working * Add max width to page content * Increase user and url column widths * Fix pull request autocomplete search * Add help link
- Loading branch information
1 parent
d7f84f3
commit 15778ac
Showing
11 changed files
with
54 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 11 additions & 4 deletions
15
...oy-app/src/app/shared/components/side-navigation-menu/side-navigation-menu.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,17 @@ | ||
<div class="menu-container"> | ||
<mat-tree [dataSource]="navItems" [childrenAccessor]="childrenAccessor"> | ||
<mat-tree-node *matTreeNodeDef="let navItem"> | ||
<a class="nav-item" [routerLink]="navItem.path" routerLinkActive="router-link-active"> | ||
<mat-icon>{{ navItem.icon }}</mat-icon> | ||
<span>{{ navItem.text }}</span> | ||
</a> | ||
@if (!navItem.external) { | ||
<a class="nav-item" [routerLink]="navItem.path" routerLinkActive="router-link-active"> | ||
<mat-icon>{{ navItem.icon }}</mat-icon> | ||
<span>{{ navItem.text }}</span> | ||
</a> | ||
} @else { | ||
<a class="nav-item" href="{{ navItem.path }}" target="_blank"> | ||
<mat-icon>{{ navItem.icon }}</mat-icon> | ||
<span>{{ navItem.text }}</span> | ||
</a> | ||
} | ||
</mat-tree-node> | ||
</mat-tree> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters