diff options
author | bobzel <zzzman@gmail.com> | 2025-02-08 14:19:41 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2025-02-08 14:19:41 -0500 |
commit | bb624694da02a56ce10e3bfa4c75957592e3a86d (patch) | |
tree | 79e33303fd2921960169704d8810f88fc4cb555a /src/client/views/nodes/imageEditor/ImageEditorButtons.tsx | |
parent | d72977ad8b67f2575cad8aea988fcfa7c04f794a (diff) | |
parent | 392143a84250df3742bc2f52d358fec25877e4de (diff) |
merged
Diffstat (limited to 'src/client/views/nodes/imageEditor/ImageEditorButtons.tsx')
-rw-r--r-- | src/client/views/nodes/imageEditor/ImageEditorButtons.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/imageEditor/ImageEditorButtons.tsx b/src/client/views/nodes/imageEditor/ImageEditorButtons.tsx index de2116253..985dc914f 100644 --- a/src/client/views/nodes/imageEditor/ImageEditorButtons.tsx +++ b/src/client/views/nodes/imageEditor/ImageEditorButtons.tsx @@ -53,7 +53,7 @@ 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 style={{ width: '100%' }} text={tool.name} |