-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add 'Support Tools' to ticket details screen.
- Loading branch information
1 parent
97aa61a
commit 3e7292c
Showing
23 changed files
with
285 additions
and
66 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
Empty file.
37 changes: 37 additions & 0 deletions
37
...-ui/src/app/event-horizon/components/event-horizon-modal/event-horizon-modal.component.ts
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import { SimpleEntity } from '@/api/models'; | ||
import { ModalConfirmService } from '@/services/modal-confirm.service'; | ||
import { Component } from '@angular/core'; | ||
|
||
@Component({ | ||
template: ` | ||
<div class="modal-confirm-component"> | ||
<div class="modal-header"> | ||
<div class="titles-container"> | ||
<h4 class="modal-title pull-left">{{ team?.name }}</h4> | ||
<h5 class="gray-text">Challenge Timeline: {{game?.name}}</h5> | ||
</div> | ||
<button type="button" class="btn-close close pull-right" aria-label="Close" (click)="close()"> | ||
<span aria-hidden="true" class="visually-hidden">×</span> | ||
</button> | ||
</div> | ||
<div class="modal-body" *ngIf="team?.id"> | ||
<app-team-event-horizon [teamId]="team?.id"></app-team-event-horizon> | ||
</div> | ||
<div class="modal-footer"> | ||
<button type="button" class="btn btn-info" (click)="close()">OK</button> | ||
</div> | ||
</div> | ||
`, | ||
selector: 'app-event-horizon-modal', | ||
styleUrls: ['./event-horizon-modal.component.scss'] | ||
}) | ||
export class EventHorizonModalComponent { | ||
team?: SimpleEntity; | ||
game?: SimpleEntity; | ||
|
||
constructor(private modalService: ModalConfirmService) { } | ||
|
||
protected close() { | ||
this.modalService.hide(); | ||
} | ||
} |
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
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
9 changes: 9 additions & 0 deletions
9
...rd-ui/src/app/support/components/ticket-support-tools/ticket-support-tools.component.scss
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
.btn-link { | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
li { | ||
margin-left: 1rem; | ||
list-style-type: square; | ||
} |
Oops, something went wrong.