Skip to content

Commit 0836b35

Browse files
committed
wip(card-list): fixup
1 parent 6dd26c6 commit 0836b35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/angular-skyhook-card-list/src/card-renderer.directive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export class CardRendererDirective<Data> implements OnInit, OnDestroy {
7373
// https://bugs.chromium.org/p/chromium/issues/detail?id=674882
7474
// although recommended Promise.resolve().then() doesn't work.
7575
this.spec && this.spec.beginDrag && _scheduleMicroTaskPolyfill(() => {
76-
this.spec.beginDrag(item);
76+
this.spec && this.spec.beginDrag && this.spec.beginDrag(item);
7777
});
7878

7979
return item;

0 commit comments

Comments
 (0)