diff options
author | crupest <crupest@outlook.com> | 2019-03-04 19:58:48 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-03-04 19:58:48 +0800 |
commit | 4daf2ce80df373fa38d32c74ee475f33a07b18f1 (patch) | |
tree | 09573a7ed1eb98c21a3694f1155022b573951310 /Timeline/ClientApp/src/app/todo-list-page/todo-list-page.component.ts | |
parent | 38a1d4de0c5d9be5dff1da32356fb4b20ff16181 (diff) | |
parent | aca753fba19a221f1aec65030ba4aec4bc34f576 (diff) | |
download | timeline-4daf2ce80df373fa38d32c74ee475f33a07b18f1.tar.gz timeline-4daf2ce80df373fa38d32c74ee475f33a07b18f1.tar.bz2 timeline-4daf2ce80df373fa38d32c74ee475f33a07b18f1.zip |
Merge branch 'master' into user
Diffstat (limited to 'Timeline/ClientApp/src/app/todo-list-page/todo-list-page.component.ts')
-rw-r--r-- | Timeline/ClientApp/src/app/todo-list-page/todo-list-page.component.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Timeline/ClientApp/src/app/todo-list-page/todo-list-page.component.ts b/Timeline/ClientApp/src/app/todo-list-page/todo-list-page.component.ts index b04d1300..c62dd808 100644 --- a/Timeline/ClientApp/src/app/todo-list-page/todo-list-page.component.ts +++ b/Timeline/ClientApp/src/app/todo-list-page/todo-list-page.component.ts @@ -1,5 +1,5 @@ import { Component, OnInit } from '@angular/core'; -import { TodoListService, WorkItem } from './todo-list.service'; +import { TodoListService, TodoItem } from './todo-list.service'; import { trigger, transition, style, animate } from '@angular/animations'; @Component({ @@ -21,7 +21,7 @@ import { trigger, transition, style, animate } from '@angular/animations'; }) export class TodoListPageComponent implements OnInit { - items: WorkItem[] = []; + items: TodoItem[] = []; isLoadCompleted = false; constructor(private todoService: TodoListService) { |