Skip to content

Commit 6511e2c

Browse files
committed
type err in kanban-list
1 parent eccac65 commit 6511e2c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/angular-skyhook/src/tokens.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ export const DRAG_DROP_MANAGER = new InjectionToken<DragDropManager<any>>('dnd-c
1414

1515
/** The type a source or target is given as a marker for 'you supplied null as a type',
1616
* so that library consumers can be reminded to use setType/setTypes manually.
17-
* See @{link DragSource#setType}, @{link DropTarget#setTypes}.
17+
* See {@link DragSource#setType}, {@link DropTarget#setTypes}.
1818
*/
1919
export const TYPE_DYNAMIC = Symbol('no type specified, you must provide one with setType/setTypes');

packages/examples/src/app/kanban/kanban-list/kanban-list.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { ItemTypes } from "../item-types";
1212
styleUrls: ["./kanban-list.component.scss"]
1313
})
1414
export class KanbanListComponent {
15-
@Input() list: Card[];
15+
@Input() list: { id: any, title: string, cards: Card[] };
1616
@Input() source: DragSource;
1717
@Input() dragging = false;
1818
@Output() dropCard = new EventEmitter<DropEvent>();

0 commit comments

Comments
 (0)