diff options
author | bobzel <zzzman@gmail.com> | 2021-04-07 13:39:42 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-04-07 13:39:42 -0400 |
commit | d0b37d7b5a8749cb6157d938ff576c7714c8ce0b (patch) | |
tree | 0dcd9a34deae23fe6018ee49058fbe9a8a354988 /src/client/util/DragManager.ts | |
parent | 76b751c0fe929c370974ba865e5b225f369fb7ea (diff) |
fixes for lightbox stepping into
Diffstat (limited to 'src/client/util/DragManager.ts')
-rw-r--r-- | src/client/util/DragManager.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/DragManager.ts b/src/client/util/DragManager.ts index c1235163b..d8c2f913e 100644 --- a/src/client/util/DragManager.ts +++ b/src/client/util/DragManager.ts @@ -207,7 +207,7 @@ export namespace DragManager { ) { const addAudioTag = (dropDoc: any) => { dropDoc && !dropDoc.creationDate && (dropDoc.creationDate = new DateField); - dropDoc instanceof Doc && DocUtils.MakeLinkToActiveAudio(dropDoc); + dropDoc instanceof Doc && DocUtils.MakeLinkToActiveAudio(() => dropDoc); return dropDoc; }; const finishDrag = (e: DragCompleteEvent) => { |