diff options
author | bobzel <zzzman@gmail.com> | 2023-03-17 12:22:03 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-03-17 12:22:03 -0400 |
commit | 8aeab8c3f25c556e39f3e9e58f9c321e79459df8 (patch) | |
tree | 1d01058a34b2fd5ca45344454dac84a4059e64d1 /src/client/views/StyleProvider.tsx | |
parent | bdccbc7a37216ffc88920ec48f9119a8ada0be60 (diff) |
fixed scriptingbox to remove script if text is empty. fixed scripting with capturedvariables not to cache scripts with lists of captured documents. fixed runtime warnings with stackedTimelined and AudioBox
Diffstat (limited to 'src/client/views/StyleProvider.tsx')
-rw-r--r-- | src/client/views/StyleProvider.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/StyleProvider.tsx b/src/client/views/StyleProvider.tsx index dba5d703f..b11117b11 100644 --- a/src/client/views/StyleProvider.tsx +++ b/src/client/views/StyleProvider.tsx @@ -5,7 +5,7 @@ import { action, runInAction } from 'mobx'; import { extname } from 'path'; import { Doc, Opt } from '../../fields/Doc'; import { BoolCast, Cast, ImageCast, NumCast, StrCast } from '../../fields/Types'; -import { DashColor, emptyFunction, lightOrDark } from '../../Utils'; +import { DashColor, lightOrDark } from '../../Utils'; import { CollectionViewType, DocumentType } from '../documents/DocumentTypes'; import { DocFocusOrOpen } from '../util/DocumentManager'; import { LinkManager } from '../util/LinkManager'; |