mirror of
https://github.com/xibyte/jsketcher
synced 2026-01-04 14:59:32 +01:00
Fix spelling mistake
This commit is contained in:
parent
43cef1eb67
commit
5e595b4e85
2 changed files with 3 additions and 3 deletions
|
|
@ -11,7 +11,7 @@ interface ImportModelParams {
|
|||
file: LocalFileAdapter;
|
||||
}
|
||||
|
||||
export const ImportModelOpperation: OperationDescriptor<ImportModelParams> = {
|
||||
export const ImportModelOperation: OperationDescriptor<ImportModelParams> = {
|
||||
id: 'IMPORT_MODEL',
|
||||
label: 'Import',
|
||||
icon: 'img/cad/import',
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ import {ScaleOperation} from "./features/scaleBody/scaleBody.operation";
|
|||
import {MirrorBodyOperation} from "./features/mirrorBody/mirrorBody.operation";
|
||||
import {PatternLinearOperation} from "./features/patternLinear/patternLinear.operation";
|
||||
import {PatternRadialOperation} from "./features/patternRadial/patternRadial.operation";
|
||||
import {ImportModelOpperation} from "./features/importModel/importModel.operation";
|
||||
import {ImportModelOperation} from "./features/importModel/importModel.operation";
|
||||
import {DeleteBodyOperation} from "./features/deleteBody/deleteBody.operation";
|
||||
//imports of action type commands
|
||||
import {GiCubes} from "react-icons/gi";
|
||||
|
|
@ -45,7 +45,7 @@ export const ModelerWorkspace: WorkbenchConfig = {
|
|||
MirrorBodyOperation,
|
||||
PatternLinearOperation,
|
||||
PatternRadialOperation,
|
||||
ImportModelOpperation,
|
||||
ImportModelOperation,
|
||||
DeleteBodyOperation,
|
||||
],
|
||||
actions: [
|
||||
|
|
|
|||
Loading…
Reference in a new issue