Angular 4.0: Template parse errors: Unexpected closing tag

No label closure error was found. What"s the problem


TaskHomeComponent.html fragment:

<div class="task-lists">
  <app-task-list
  class="list-container"
  app-droppable
  [dropTags]="["task-item", "task-list"]"
  [dragEnterClass]=""drag-enter""
  [app-draggable]="true"
  [dragTag]=""task-list""
  [draggedClass]""drag-start""
  [dragData]="list"
  (dropped)="handleMove($event, list)"
  *ngFor="let list of lists">
  <app-task-header 
  [header]="list.name"
  (newTask)="launchNewTaskDialog()"
  (moveAll)="launchCopyTaskDialog()"
  (delList)="launchConfirmDialog()"
  (onEditList)="launchEditListDialog()">
</app-task-header>
  <app-task-item
  *ngFor="let task of list.tasks"
  [item]="task"
  (taskClick)="launchUpdateTaskDialog(task)">
</app-task-item>
  </app-task-list>
</div>

<button class="fab-button" md-fab type="button" (click)="launchNewListDialog()">
  <md-icon>add</md-icon>
</button>
Mar.30,2021

<div class="task-lists">
    <app-task-list *ngFor="let list of lists" class="list-container" app-droppable [dropTags]="['task-item', 'task-list']" [dragEnterClass]="'drag-enter'"
        [app-draggable]="true" [dragTag]="'task-list'" [draggedClass]="'drag-start'" [dragData]="list" (dropped)="handleMove($event, list)">
        <app-task-header [header]="list.name" (newTask)="launchNewTaskDialog()" (moveAll)="launchCopyTaskDialog()" (delList)="launchConfirmDialog()" (onEditList)="launchEditListDialog()">
        </app-task-header>
        <app-task-item *ngFor="let task of list.tasks"  (taskClick)="launchUpdateTaskDialog(task)">
        </app-task-item>
    </app-task-list>
</div>

<button class="fab-button" md-fab type="button" (click)="launchNewListDialog()">
    <md-icon>add</md-icon>
</button>

[draggedClass] = "'drag-start'" is missing "=". You need to be more careful when writing. Generally speaking, this problem is caused by the failure of punctuation marks

.
Menu