diff options
| author | geireann <geireann.lindfield@gmail.com> | 2023-03-16 11:16:19 -0400 |
|---|---|---|
| committer | geireann <geireann.lindfield@gmail.com> | 2023-03-16 11:16:19 -0400 |
| commit | a0ae93e3b14069c0de419fc5dcade84d460a0b30 (patch) | |
| tree | 40a3b49fc48975be3797bcb07c96771e32bdc77b /src/client/views/nodes/AudioBox.tsx | |
| parent | ab60751c36cb8cf8f87bbb9e1fe227deb3701121 (diff) | |
| parent | 0e55893d0f7f2a0aa5098df73d0ece5a7f1a4ddf (diff) | |
Merge branch 'master' into pres-trail-sophie
Diffstat (limited to 'src/client/views/nodes/AudioBox.tsx')
| -rw-r--r-- | src/client/views/nodes/AudioBox.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/nodes/AudioBox.tsx b/src/client/views/nodes/AudioBox.tsx index 4c26468b9..890ecc1b2 100644 --- a/src/client/views/nodes/AudioBox.tsx +++ b/src/client/views/nodes/AudioBox.tsx @@ -11,6 +11,7 @@ import { emptyFunction, formatTime, OmitKeys, returnFalse, setupMoveUpEvents } f import { DocUtils } from '../../documents/Documents'; import { Networking } from '../../Network'; import { DragManager } from '../../util/DragManager'; +import { LinkManager } from '../../util/LinkManager'; import { undoBatch } from '../../util/UndoManager'; import { CollectionStackedTimeline, TrimScope } from '../collections/CollectionStackedTimeline'; import { ContextMenu } from '../ContextMenu'; @@ -84,7 +85,7 @@ export class AudioBox extends ViewBoxAnnotatableComponent<ViewBoxAnnotatableProp return this.props.PanelHeight() < 50; } // used to collapse timeline when node is shrunk @computed get links() { - return DocListCast(this.dataDoc.links); + return LinkManager.Links(this.dataDoc); } @computed get mediaState() { return this.dataDoc.mediaState as media_state; |
