Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<h1 mat-dialog-title>{{ title }}</h1>
<form (ngSubmit)="done()">
<mat-form-field>
<mat-label>Name</mat-label>
<input
matInput
placeholder="Name"
Expand All @@ -17,6 +18,7 @@ <h1 mat-dialog-title>{{ title }}</h1>
><br />
><br />
<mat-form-field>
<mat-label>Description</mat-label>
<input
matInput
placeholder="Description"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<h1 mat-dialog-title>{{ title }}</h1>
<form (ngSubmit)="done()">
<mat-form-field>
<mat-label>Name</mat-label>
<input
matInput
placeholder="Name"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
</div>
<div class="d-flex align-items-center">
<mat-form-field class="w-100 my-1" subscriptSizing="dynamic">
<mat-label>Search</mat-label>
<mat-icon
matPrefix
style="transform: scale(0.85); margin-right: 5px; margin-left: 10px"
Expand Down Expand Up @@ -147,6 +148,7 @@
<mat-header-cell *matHeaderCellDef>Role</mat-header-cell>
<mat-cell *matCellDef="let element">
<mat-form-field subscriptSizing="dynamic" class="my-1">
<mat-label>Role</mat-label>
<mat-select
placeholder="Role"
name="teamMembershipRole"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ <h1 mat-dialog-title>{{ title }}</h1>

<form [formGroup]="form" class="name-form">
<mat-form-field class="form-full-width">
<mat-label>Name</mat-label>
<input
formControlName="name"
matInput
Expand Down
Loading