diff options
author | bobzel <zzzman@gmail.com> | 2024-09-02 12:51:43 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-09-02 12:51:43 -0400 |
commit | 7f4d53ce9f8cf3932b627ab063855e3323cc3dc2 (patch) | |
tree | 4730bdab3d8fe2af005a6e6a097da58f6ebaca13 /src | |
parent | 2133a20dfd1346d8eef897f4536dc21e16271537 (diff) |
from last
Diffstat (limited to 'src')
-rw-r--r-- | src/client/views/smartdraw/AnnotationPalette.tsx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/client/views/smartdraw/AnnotationPalette.tsx b/src/client/views/smartdraw/AnnotationPalette.tsx index 2ebe5bca5..a2d6cc88d 100644 --- a/src/client/views/smartdraw/AnnotationPalette.tsx +++ b/src/client/views/smartdraw/AnnotationPalette.tsx @@ -6,13 +6,11 @@ import { observer } from 'mobx-react'; import * as React from 'react'; import { AiOutlineSend } from 'react-icons/ai'; import ReactLoading from 'react-loading'; -import { ClientUtils, returnEmptyFilter, returnFalse, returnTrue } from '../../../ClientUtils'; +import { returnEmptyFilter, returnFalse, returnTrue } from '../../../ClientUtils'; import { emptyFunction } from '../../../Utils'; import { Doc, DocListCast, returnEmptyDoclist } from '../../../fields/Doc'; import { DocData } from '../../../fields/DocSymbols'; -import { Copy } from '../../../fields/FieldSymbols'; import { ImageCast } from '../../../fields/Types'; -import { ImageField } from '../../../fields/URLField'; import { DocumentType } from '../../documents/DocumentTypes'; import { Docs } from '../../documents/Documents'; import { makeUserTemplateImage } from '../../util/DropConverter'; @@ -25,7 +23,6 @@ import { DocumentView, DocumentViewInternal } from '../nodes/DocumentView'; import { FieldView } from '../nodes/FieldView'; import './AnnotationPalette.scss'; import { DrawingOptions, SmartDrawHandler } from './SmartDrawHandler'; -import { setTime } from 'react-datepicker/dist/date_utils'; interface AnnotationPaletteProps { Document: Doc; |