diff options
author | mehekj <mehek.jethani@gmail.com> | 2022-06-02 13:32:17 -0400 |
---|---|---|
committer | mehekj <mehek.jethani@gmail.com> | 2022-06-02 13:32:17 -0400 |
commit | eee5c6e67b25c0ff49289458acea0ef6f11d92de (patch) | |
tree | 652b91ba9881c4fb45b07df5ae56ead79e26013f /src/client/views/LightboxView.tsx | |
parent | 53cae5e2ab9267295a824ff721c119ada5e5dc20 (diff) | |
parent | 30347f1ac971b3299cfbefd5505e20f5e82702e0 (diff) |
Merge branch 'inking-naafi-mehek' into master-cleanup
Diffstat (limited to 'src/client/views/LightboxView.tsx')
-rw-r--r-- | src/client/views/LightboxView.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/LightboxView.tsx b/src/client/views/LightboxView.tsx index 9882693ee..dd415212c 100644 --- a/src/client/views/LightboxView.tsx +++ b/src/client/views/LightboxView.tsx @@ -5,7 +5,7 @@ import "normalize.css"; import * as React from 'react'; import { Doc, DocListCast, Opt } from '../../fields/Doc'; import { Cast, NumCast, StrCast } from '../../fields/Types'; -import { emptyFunction, returnEmptyDoclist, returnEmptyFilter, returnFalse, returnTrue } from '../../Utils'; +import { emptyFunction, returnEmptyDoclist, returnEmptyFilter, returnFalse, returnTrue, Utils } from '../../Utils'; import { DocUtils } from '../documents/Documents'; import { DocumentManager } from '../util/DocumentManager'; import { LinkManager } from '../util/LinkManager'; @@ -17,6 +17,7 @@ import "./LightboxView.scss"; import { DocumentView } from './nodes/DocumentView'; import { DefaultStyleProvider, wavyBorderPath } from './StyleProvider'; import { CollectionMenu } from './collections/CollectionMenu'; +import { utils } from 'mocha'; interface LightboxViewProps { PanelWidth: number; |