-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Indicate clickable issue/pr and milestone (#380)
Clicking on issue/pr card will link to the issue/pr. Cursor indicates text selection when put over issue/pr title and milestone title. It should link to different pages when clicked on different things on the card and indicate clickable links. Let's make milestone clickable and make cursor a pointer when put over the titles.
- Loading branch information
Showing
7 changed files
with
40 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
<mat-card class="card" [ngClass]="getIssueOpenOrCloseColorCSSClass()"> | ||
<a class="no-underline link-grey-dark" (click)="viewIssueInBrowser($event)"> | ||
<a class="no-underline link-grey-dark"> | ||
<span [matTooltip]="this.issue.updated_at"> | ||
<app-issue-pr-card-header [issue]="issue"></app-issue-pr-card-header> | ||
<mat-card-content> | ||
<app-issue-pr-card-milestone | ||
[milestone]="issue.milestone" | ||
[repoHasMilestones]="!milestoneService.hasNoMilestones" | ||
></app-issue-pr-card-milestone> | ||
<app-issue-pr-card-labels [labels]="issue.githubLabels" [labelSet]="filter?.hiddenLabels"></app-issue-pr-card-labels> | ||
</mat-card-content> | ||
<app-issue-pr-card-header [issue]="issue" (click)="viewIssueInBrowser($event)"></app-issue-pr-card-header> | ||
</span> | ||
</a> | ||
<mat-card-content> | ||
<app-issue-pr-card-milestone | ||
[milestone]="issue.milestone" | ||
[repoHasMilestones]="!milestoneService.hasNoMilestones" | ||
(click)="viewMilestoneInBrowser($event)" | ||
></app-issue-pr-card-milestone> | ||
<app-issue-pr-card-labels [labels]="issue.githubLabels" [labelSet]="filter?.hiddenLabels"></app-issue-pr-card-labels> | ||
</mat-card-content> | ||
</mat-card> |
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