diff options
| author | bobzel <zzzman@gmail.com> | 2024-09-06 15:49:33 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2024-09-06 15:49:33 -0400 |
| commit | f569f3bfd7aca43479e76f8c5bd88192bc113a25 (patch) | |
| tree | a2e178a07aafb3ebcdb66258c1cee018485907a7 /src/client/views/nodes/FontIconBox/FontIconBox.tsx | |
| parent | 85734663ec1c65678c4e292ddbdf63ae02b47476 (diff) | |
| parent | 950651b904f9bb6843f15eda1322025e84015f3c (diff) | |
Merge branch 'master' into alyssa-starter
Diffstat (limited to 'src/client/views/nodes/FontIconBox/FontIconBox.tsx')
| -rw-r--r-- | src/client/views/nodes/FontIconBox/FontIconBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/FontIconBox/FontIconBox.tsx b/src/client/views/nodes/FontIconBox/FontIconBox.tsx index f2f7f39bb..7a09ad9e2 100644 --- a/src/client/views/nodes/FontIconBox/FontIconBox.tsx +++ b/src/client/views/nodes/FontIconBox/FontIconBox.tsx @@ -345,7 +345,7 @@ export class FontIconBox extends ViewBoxBaseComponent<ButtonProps>() { @computed get editableText() { const script = ScriptCast(this.Document.script); - const checkResult = script?.script.run({ this: this.Document, value: '', _readOnly_: true }).result; + const checkResult = script?.script.run({ this: this.Document, value: '', _readOnly_: true }).result as string; const setValue = (value: string) => script?.script.run({ this: this.Document, value, _readOnly_: false }).result as boolean; |
