aboutsummaryrefslogtreecommitdiff
path: root/Timeline/ClientApp/src/app/todo-item/todo-item.component.ts
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2019-03-04 19:58:48 +0800
committercrupest <crupest@outlook.com>2019-03-04 19:58:48 +0800
commit4daf2ce80df373fa38d32c74ee475f33a07b18f1 (patch)
tree09573a7ed1eb98c21a3694f1155022b573951310 /Timeline/ClientApp/src/app/todo-item/todo-item.component.ts
parent38a1d4de0c5d9be5dff1da32356fb4b20ff16181 (diff)
parentaca753fba19a221f1aec65030ba4aec4bc34f576 (diff)
downloadtimeline-4daf2ce80df373fa38d32c74ee475f33a07b18f1.tar.gz
timeline-4daf2ce80df373fa38d32c74ee475f33a07b18f1.tar.bz2
timeline-4daf2ce80df373fa38d32c74ee475f33a07b18f1.zip
Merge branch 'master' into user
Diffstat (limited to 'Timeline/ClientApp/src/app/todo-item/todo-item.component.ts')
-rw-r--r--Timeline/ClientApp/src/app/todo-item/todo-item.component.ts7
1 files changed, 3 insertions, 4 deletions
diff --git a/Timeline/ClientApp/src/app/todo-item/todo-item.component.ts b/Timeline/ClientApp/src/app/todo-item/todo-item.component.ts
index 27d57e28..325812f1 100644
--- a/Timeline/ClientApp/src/app/todo-item/todo-item.component.ts
+++ b/Timeline/ClientApp/src/app/todo-item/todo-item.component.ts
@@ -1,5 +1,5 @@
-import { Component, OnInit, Input } from '@angular/core';
-import { WorkItem } from '../todo-list-page/todo-list.service';
+import { Component, Input } from '@angular/core';
+import { TodoItem } from '../todo-list-page/todo-list.service';
@Component({
selector: 'app-todo-item',
@@ -8,7 +8,6 @@ import { WorkItem } from '../todo-list-page/todo-list.service';
})
export class TodoItemComponent {
- @Input() item: WorkItem;
-
+ @Input() item: TodoItem;
}