Skip to content

Commit

Permalink
type err in kanban-list
Browse files Browse the repository at this point in the history
  • Loading branch information
cormacrelf committed Jun 18, 2018
1 parent eccac65 commit 6511e2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/angular-skyhook/src/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ export const DRAG_DROP_MANAGER = new InjectionToken<DragDropManager<any>>('dnd-c

/** The type a source or target is given as a marker for 'you supplied null as a type',
* so that library consumers can be reminded to use setType/setTypes manually.
* See @{link DragSource#setType}, @{link DropTarget#setTypes}.
* See {@link DragSource#setType}, {@link DropTarget#setTypes}.
*/
export const TYPE_DYNAMIC = Symbol('no type specified, you must provide one with setType/setTypes');
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { ItemTypes } from "../item-types";
styleUrls: ["./kanban-list.component.scss"]
})
export class KanbanListComponent {
@Input() list: Card[];
@Input() list: { id: any, title: string, cards: Card[] };
@Input() source: DragSource;
@Input() dragging = false;
@Output() dropCard = new EventEmitter<DropEvent>();
Expand Down

0 comments on commit 6511e2c

Please sign in to comment.