-
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.
* WIP timeline updates * Add ticket stuff to timeline * Update tooltip markdown for timestamp * Fix ticket label picker modal search * Ticket details styling * Minor styling to ticket details, fix certificate stuff * Fix support pill
- Loading branch information
1 parent
85be2ed
commit 8120413
Showing
17 changed files
with
171 additions
and
78 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
3 changes: 3 additions & 0 deletions
3
...board-ui/src/app/core/components/challenge-yaml-modal/challenge-yaml-modal.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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<app-modal-content title="Challenge State" subtitle=""> | ||
|
||
</app-modal-content> |
Empty file.
20 changes: 20 additions & 0 deletions
20
...meboard-ui/src/app/core/components/challenge-yaml-modal/challenge-yaml-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,20 @@ | ||
import { Component, OnInit } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
import { CoreModule } from "../../core.module"; | ||
|
||
@Component({ | ||
selector: 'app-challenge-yaml-modal', | ||
standalone: true, | ||
imports: [CommonModule, CoreModule], | ||
templateUrl: './challenge-yaml-modal.component.html', | ||
styleUrls: ['./challenge-yaml-modal.component.scss'] | ||
}) | ||
export class ChallengeYamlModalComponent implements OnInit { | ||
challengeId?: string; | ||
|
||
ngOnInit(): void { | ||
if (!this.challengeId) { | ||
throw new Error("challengeId is required."); | ||
} | ||
} | ||
} |
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
12 changes: 7 additions & 5 deletions
12
...app/support/components/ticket-label-picker-modal/ticket-label-picker-modal.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
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,3 +0,0 @@ | ||
li { | ||
// flex-basis: 30%; | ||
} | ||
2 changes: 1 addition & 1 deletion
2
projects/gameboard-ui/src/app/support/support-pill/support-pill.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 +1 @@ | ||
<fa-icon *ngIf="count > 0" [icon]="faPill" class="text-warning"></fa-icon> | ||
<fa-icon *ngIf="count > 0" [icon]="faPill" class="ml-2 text-warning"></fa-icon> |
Oops, something went wrong.