Fix capitalization in media editor variable name
This commit is contained in:
parent
0163ef203b
commit
327a38a552
1 changed files with 2 additions and 2 deletions
|
@ -362,7 +362,7 @@ export const MediaEditor = ({
|
||||||
const [canRedo, setCanRedo] = useState(false);
|
const [canRedo, setCanRedo] = useState(false);
|
||||||
const [canUndo, setCanUndo] = useState(false);
|
const [canUndo, setCanUndo] = useState(false);
|
||||||
const [canCrop, setCanCrop] = useState(false);
|
const [canCrop, setCanCrop] = useState(false);
|
||||||
const [cropAspectRatioLock, setcropAspectRatioLock] = useState(false);
|
const [cropAspectRatioLock, setCropAspectRatioLock] = useState(false);
|
||||||
const [drawTool, setDrawTool] = useState<DrawTool>(DrawTool.Pen);
|
const [drawTool, setDrawTool] = useState<DrawTool>(DrawTool.Pen);
|
||||||
const [drawWidth, setDrawWidth] = useState<DrawWidth>(DrawWidth.Regular);
|
const [drawWidth, setDrawWidth] = useState<DrawWidth>(DrawWidth.Regular);
|
||||||
const [editMode, setEditMode] = useState<EditMode | undefined>();
|
const [editMode, setEditMode] = useState<EditMode | undefined>();
|
||||||
|
@ -846,7 +846,7 @@ export const MediaEditor = ({
|
||||||
if (fabricCanvas) {
|
if (fabricCanvas) {
|
||||||
fabricCanvas.uniformScaling = !cropAspectRatioLock;
|
fabricCanvas.uniformScaling = !cropAspectRatioLock;
|
||||||
}
|
}
|
||||||
setcropAspectRatioLock(!cropAspectRatioLock);
|
setCropAspectRatioLock(!cropAspectRatioLock);
|
||||||
}}
|
}}
|
||||||
type="button"
|
type="button"
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Add table
Reference in a new issue