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/DocumentButtonBar.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/DocumentButtonBar.tsx')
-rw-r--r-- | src/client/views/DocumentButtonBar.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/DocumentButtonBar.tsx b/src/client/views/DocumentButtonBar.tsx index af868ba9c..9389fed01 100644 --- a/src/client/views/DocumentButtonBar.tsx +++ b/src/client/views/DocumentButtonBar.tsx @@ -518,7 +518,7 @@ export class DocumentButtonBar extends React.Component<{ views: () => (DocumentV ) }> <div className={'documentButtonBar-linkButton-empty'} ref={this._dragRef} onPointerDown={this.onTemplateButton}> - {<FontAwesomeIcon className="documentdecorations-icon" icon="edit" size="sm" />} + <FontAwesomeIcon className="documentdecorations-icon" icon="edit" size="sm" /> </div> </Flyout> </div> |