Properly capitalize properties
This commit is contained in:
@@ -19,7 +19,7 @@
|
||||
aria-expanded="false"
|
||||
>
|
||||
Gehört zu Story:
|
||||
{{ getUserstoryTitleById(task.userstoryid) || "Keine" }}
|
||||
{{ getUserstoryTitleById(task.userstoryId) || "Keine" }}
|
||||
<i class="fa fa-caret-down"></i>
|
||||
</span>
|
||||
<div
|
||||
@@ -30,7 +30,7 @@
|
||||
<option
|
||||
ngbDropdownItem
|
||||
*ngFor="let userstory of userstories"
|
||||
(click)="task.userstoryid = userstory.id"
|
||||
(click)="task.userstoryId = userstory.id"
|
||||
>{{ userstory.title }}</option
|
||||
>
|
||||
</div>
|
||||
@@ -104,7 +104,7 @@
|
||||
aria-haspopup="true"
|
||||
aria-expanded="false"
|
||||
>
|
||||
Status: {{ getStatusTitleById(task.statusid) }}
|
||||
Status: {{ getStatusTitleById(task.statusId) }}
|
||||
</button>
|
||||
<div
|
||||
ngbDropdownMenu
|
||||
@@ -116,7 +116,7 @@
|
||||
disable-auto-close
|
||||
ngbDropdownItem
|
||||
*ngFor="let status of allStatus"
|
||||
(click)="task.statusid = status.id"
|
||||
(click)="task.statusId = status.id"
|
||||
>{{ status.title }}</option
|
||||
>
|
||||
|
||||
@@ -145,7 +145,7 @@
|
||||
ngbDropdownItem
|
||||
class="dropdown-item"
|
||||
type="button"
|
||||
(click)="deleteStatus(task.statusid)"
|
||||
(click)="deleteStatus(task.statusId)"
|
||||
>
|
||||
Status löschen
|
||||
</button>
|
||||
@@ -157,7 +157,7 @@
|
||||
id="status"
|
||||
required
|
||||
name="status"
|
||||
[(ngModel)]="task.statusid"
|
||||
[(ngModel)]="task.statusId"
|
||||
>
|
||||
<option
|
||||
*ngFor="let status of allStatus"
|
||||
@@ -178,7 +178,7 @@
|
||||
aria-haspopup="true"
|
||||
aria-expanded="false"
|
||||
>
|
||||
Bearbeiter: {{ getAuthorById(task.assignedtoid) }}
|
||||
Bearbeiter: {{ getAuthorById(task.assignedtoId) }}
|
||||
</button>
|
||||
<div
|
||||
ngbDropdownMenu
|
||||
@@ -190,7 +190,7 @@
|
||||
disable-auto-close
|
||||
ngbDropdownItem
|
||||
*ngFor="let user of allUser"
|
||||
(click)="task.assignedtoid = user.id"
|
||||
(click)="task.assignedtoId = user.id"
|
||||
>{{ user.name }}</option
|
||||
>
|
||||
</div>
|
||||
@@ -201,7 +201,7 @@
|
||||
id="assignedto"
|
||||
required
|
||||
name="assignedto"
|
||||
[(ngModel)]="task.assignedtoid"
|
||||
[(ngModel)]="task.assignedtoId"
|
||||
>
|
||||
<option *ngFor="let user of allUser" [value]="user.id">{{
|
||||
user.name
|
||||
|
||||
Reference in New Issue
Block a user