minor changes
This commit is contained in:
parent
75b964402a
commit
ee5e883ecf
@ -235,7 +235,7 @@ export interface ScrumSprint{
|
|||||||
description?: string;
|
description?: string;
|
||||||
startDate: Date;
|
startDate: Date;
|
||||||
endDate: Date;
|
endDate: Date;
|
||||||
project: number;
|
project?: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ScrumCategory {
|
export interface ScrumCategory {
|
||||||
|
@ -31,7 +31,7 @@ export class SprintFormComponent implements OnInit {
|
|||||||
|
|
||||||
ngOnInit(): void {
|
ngOnInit(): void {
|
||||||
if (this.sprint === null || this.sprint === undefined) {
|
if (this.sprint === null || this.sprint === undefined) {
|
||||||
this.sprint = { title: '', startDate: new Date(), endDate: new Date(), project: 0 }; //project id: static counter?
|
this.sprint = { title: '', startDate: new Date(), endDate: new Date()}; //project id missing...
|
||||||
this.editing = false;
|
this.editing = false;
|
||||||
} else {
|
} else {
|
||||||
this.editing = true;
|
this.editing = true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user