diff options
author | bobzel <zzzman@gmail.com> | 2024-09-17 20:43:16 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-09-17 20:43:16 -0400 |
commit | 893a7cb517490ad5fc1f4737ff610779a57fdee7 (patch) | |
tree | 9dbbb6def29dc63808929c38130ed8643223a37e /src/client/views/nodes/FontIconBox/FontIconBox.tsx | |
parent | dca949e163ba916e392bf598086ce3eef72ad17c (diff) |
cleaning up card view stuff post-merge
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 0fe112634..7feb17df1 100644 --- a/src/client/views/nodes/FontIconBox/FontIconBox.tsx +++ b/src/client/views/nodes/FontIconBox/FontIconBox.tsx @@ -157,7 +157,7 @@ export class FontIconBox extends ViewBoxBaseComponent<ButtonProps>() { let noviceList: string[] = []; let text: string | undefined; - let getStyle: (val: string) => { [key: string]: string } = () => ({}); + const getStyle: (val: string) => { [key: string]: string } = () => ({}); let icon: IconProp = 'caret-down'; const isViewDropdown = script?.script.originalScript.startsWith('{ return setView'); if (isViewDropdown) { |