aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/imageEditor
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2025-02-04 14:08:38 -0500
committerbobzel <zzzman@gmail.com>2025-02-04 14:08:38 -0500
commit68bf2f9e4141d8a99407ff4c6c02d44795c638de (patch)
treeef24f44321989f2d6bc5bc34eaced6b990d228f8 /src/client/views/nodes/imageEditor
parente8c1107aebd660872018c472ff5017d873e4b626 (diff)
fixing up gpt and animation panel in presbox.
Diffstat (limited to 'src/client/views/nodes/imageEditor')
-rw-r--r--src/client/views/nodes/imageEditor/ImageEditorButtons.tsx3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/client/views/nodes/imageEditor/ImageEditorButtons.tsx b/src/client/views/nodes/imageEditor/ImageEditorButtons.tsx
index e810881a5..985dc914f 100644
--- a/src/client/views/nodes/imageEditor/ImageEditorButtons.tsx
+++ b/src/client/views/nodes/imageEditor/ImageEditorButtons.tsx
@@ -53,9 +53,8 @@ export function ApplyFuncButtons({ loading, onClick: getEdit, onReset, btnText }
export function ImageToolButton(tool: ImageEditTool, isActive: boolean, selectTool: (type: ImageToolType) => void) {
return (
- <div className="imageEditorButtonContainer">
+ <div key={tool.name} className="imageEditorButtonContainer">
<Button
- key={tool.name}
style={{ width: '100%' }}
text={tool.name}
type={Type.TERT}