-
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.
#705 extract search-team-management, add no-members message, sort mem…
…bers by first name
- Loading branch information
1 parent
da15342
commit 8ef2b94
Showing
9 changed files
with
51 additions
and
29 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
17 changes: 17 additions & 0 deletions
17
...tend/src/app/team-management/search-team-management/search-team-management.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,17 @@ | ||
<form class="d-flex"> | ||
<mat-form-field | ||
id="search-member-form-field" | ||
class="bg-white header-form-field" | ||
ngDefaultControl | ||
subscriptSizing="dynamic" | ||
appearance="outline" | ||
> | ||
<input matInput type="text" placeholder="Nach Team oder Member suchen" [attr.data-testId]="'teamManagementSearch'" /> | ||
</mat-form-field> | ||
<button | ||
class="bg-pz-dark-blue d-flex justify-content-center align-items-center search-button icon-button px-3 focus-outline" | ||
type="submit" | ||
> | ||
<mat-icon aria-hidden="false" aria-label="Example home icon" fontIcon="search" class="text-white"></mat-icon> | ||
</button> | ||
</form> |
3 changes: 3 additions & 0 deletions
3
...tend/src/app/team-management/search-team-management/search-team-management.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,3 @@ | ||
#search-member-form-field { | ||
width: 100%; | ||
} |
10 changes: 10 additions & 0 deletions
10
frontend/src/app/team-management/search-team-management/search-team-management.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,10 @@ | ||
import {Component} from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'app-search-team-management', | ||
templateUrl: './search-team-management.component.html', | ||
styleUrl: './search-team-management.component.scss' | ||
}) | ||
export class SearchTeamManagementComponent { | ||
|
||
} |
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
4 changes: 2 additions & 2 deletions
4
frontend/src/app/team-management/team-management.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