Skip to content

Commit

Permalink
fix(Run List): Share with students link should show pointer hand
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffreykwan committed Jun 29, 2023
1 parent 987b1a9 commit 0c1844f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
</div>
<div>
<span i18n>Access Code: {{ run.runCode }}</span> (<a
class="share-with-students-link"
[routerLink]=""
(click)="shareCode()"
(keyup.enter)="shareCode()"
Expand Down Expand Up @@ -99,11 +100,7 @@
<span *ngIf="run.lastRun" class="mat-caption secondary-text center" i18n
>Last student login: {{ run.lastRun | date: 'short' }}</span
>
<button
*ngIf="!isRunActive(run) && !isRunCompleted(run)"
mat-flat-button
disabled
>
<button *ngIf="!isRunActive(run) && !isRunCompleted(run)" mat-flat-button disabled>
<ng-container i18n>Starts {{ run.startTime | date }}</ng-container>
</button>
<button
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,7 @@
app-run-menu {
margin: -8px -8px 0 0;
}

.share-with-students-link {
cursor: pointer;
}

0 comments on commit 0c1844f

Please sign in to comment.