-
+
How are your active users trending over time?
diff --git a/src/app/main/content/apps/e-commerce/orders/orders.component.html b/src/app/main/content/apps/e-commerce/orders/orders.component.html
index 8192e304..0b4462e6 100644
--- a/src/app/main/content/apps/e-commerce/orders/orders.component.html
+++ b/src/app/main/content/apps/e-commerce/orders/orders.component.html
@@ -21,7 +21,7 @@
-
diff --git a/src/app/main/content/apps/mail/sidenavs/main/main-sidenav.component.html b/src/app/main/content/apps/mail/sidenavs/main/main-sidenav.component.html
index 97e668bf..e467ee42 100644
--- a/src/app/main/content/apps/mail/sidenavs/main/main-sidenav.component.html
+++ b/src/app/main/content/apps/mail/sidenavs/main/main-sidenav.component.html
@@ -49,7 +49,7 @@
diff --git a/src/app/main/content/apps/scrumboard/board/dialogs/card/card.component.html b/src/app/main/content/apps/scrumboard/board/dialogs/card/card.component.html
index be1bb72e..caa2f1b3 100644
--- a/src/app/main/content/apps/scrumboard/board/dialogs/card/card.component.html
+++ b/src/app/main/content/apps/scrumboard/board/dialogs/card/card.component.html
@@ -326,18 +326,20 @@
{{checklist.name}}
-
+
+
+
@@ -372,7 +374,7 @@
diff --git a/src/app/main/content/apps/todo/todo-details/todo-details.component.html b/src/app/main/content/apps/todo/todo-details/todo-details.component.html
index 13565962..098a1ef7 100644
--- a/src/app/main/content/apps/todo/todo-details/todo-details.component.html
+++ b/src/app/main/content/apps/todo/todo-details/todo-details.component.html
@@ -20,32 +20,34 @@
-
-
+
+
diff --git a/src/app/main/content/apps/todo/todo-details/todo-details.component.ts b/src/app/main/content/apps/todo/todo-details/todo-details.component.ts
index f64737e0..6acf10e5 100644
--- a/src/app/main/content/apps/todo/todo-details/todo-details.component.ts
+++ b/src/app/main/content/apps/todo/todo-details/todo-details.component.ts
@@ -92,7 +92,7 @@ export class FuseTodoDetailsComponent implements OnInit, OnDestroy
this.onCurrentTodoChanged.unsubscribe();
this.onNewTodoClicked.unsubscribe();
}
-
+
focusTitleField()
{
setTimeout(() => {
@@ -157,6 +157,11 @@ export class FuseTodoDetailsComponent implements OnInit, OnDestroy
this.todoService.toggleTagOnTodo(tagId, this.todo);
}
+ hasTag(tagId)
+ {
+ return this.todoService.hasTag(tagId, this.todo);
+ }
+
addTodo()
{
this.todoService.updateTodo(this.todoForm.getRawValue());
diff --git a/src/app/main/content/apps/todo/todo-list/todo-list-item/todo-list-item.component.html b/src/app/main/content/apps/todo/todo-list/todo-list-item/todo-list-item.component.html
index a5e92e83..a67745d1 100644
--- a/src/app/main/content/apps/todo/todo-list/todo-list-item/todo-list-item.component.html
+++ b/src/app/main/content/apps/todo/todo-list/todo-list-item/todo-list-item.component.html
@@ -35,19 +35,19 @@
diff --git a/src/app/main/content/apps/todo/todo.model.ts b/src/app/main/content/apps/todo/todo.model.ts
index 4dba7f5f..0d3b3878 100644
--- a/src/app/main/content/apps/todo/todo.model.ts
+++ b/src/app/main/content/apps/todo/todo.model.ts
@@ -30,7 +30,7 @@ export class Todo
this.starred = todo.starred;
this.important = todo.important;
this.deleted = todo.deleted;
- this.tags = todo.tags;
+ this.tags = todo.tags || [];
}
}
diff --git a/src/app/main/content/apps/todo/todo.service.ts b/src/app/main/content/apps/todo/todo.service.ts
index 0e53ca29..5741c08d 100644
--- a/src/app/main/content/apps/todo/todo.service.ts
+++ b/src/app/main/content/apps/todo/todo.service.ts
@@ -364,10 +364,20 @@ export class TodoService implements Resolve
{
todo.tags.push(tagId);
}
-
+
this.updateTodo(todo);
}
+ hasTag(tagId, todo)
+ {
+ if ( !todo.tags )
+ {
+ return false;
+ }
+
+ return todo.tags.indexOf(tagId) !== -1;
+ }
+
/**
* Update the todo
* @param todo
diff --git a/src/app/main/content/components-third-party/datatable/ngx-datatable.component.html b/src/app/main/content/components-third-party/datatable/ngx-datatable.component.html
index 645c07ff..93c23710 100644
--- a/src/app/main/content/components-third-party/datatable/ngx-datatable.component.html
+++ b/src/app/main/content/components-third-party/datatable/ngx-datatable.component.html
@@ -14,7 +14,7 @@
- link
+ link
Reference
diff --git a/src/app/main/content/components-third-party/google-maps/google-maps.component.html b/src/app/main/content/components-third-party/google-maps/google-maps.component.html
index a85e5cc0..9f9fe7b5 100644
--- a/src/app/main/content/components-third-party/google-maps/google-maps.component.html
+++ b/src/app/main/content/components-third-party/google-maps/google-maps.component.html
@@ -14,7 +14,7 @@