Skip to content

Commit

Permalink
Merge pull request #21724 from jungpaeng/docs/fix-controls
Browse files Browse the repository at this point in the history
docs: Fixing controls check type issues
  • Loading branch information
jonniebigodes committed Mar 30, 2023
2 parents 41ff404 + e9be252 commit acace30
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 24 deletions.
Expand Up @@ -40,10 +40,8 @@ const meta: Meta<Gizmo> = {
options: ['left', 'right', 'center'],
},
rotationAxis: {
control: {
type: 'check',
options: ['x', 'y', 'z'],
},
control: 'check',
options: ['x', 'y', 'z'],
},
scaling: {
control: 'select',
Expand Down
Expand Up @@ -37,10 +37,8 @@ export default {
options: ['left', 'right', 'center'],
},
rotationAxis: {
control: {
type: 'check',
options: ['x', 'y', 'z'],
},
control: 'check',
options: ['x', 'y', 'z'],
},
scaling: {
control: 'select',
Expand Down
Expand Up @@ -40,10 +40,8 @@ const meta = {
options: ['left', 'right', 'center'],
},
rotationAxis: {
control: {
type: 'check',
options: ['x', 'y', 'z'],
},
control: 'check',
options: ['x', 'y', 'z'],
},
scaling: {
control: 'select',
Expand Down
Expand Up @@ -40,10 +40,8 @@ const meta: Meta<typeof Gizmo> = {
options: ['left', 'right', 'center'],
},
rotationAxis: {
control: {
type: 'check',
options: ['x', 'y', 'z'],
},
control: 'check',
options: ['x', 'y', 'z'],
},
scaling: {
control: 'select',
Expand Down
Expand Up @@ -31,10 +31,8 @@ export default {
options: ['left', 'right', 'center'],
},
rotationAxis: {
control: {
type: 'check',
options: ['x', 'y', 'z'],
},
control: 'check',
options: ['x', 'y', 'z'],
},
scaling: {
control: 'select',
Expand Down
Expand Up @@ -33,10 +33,8 @@ const meta: Meta = {
options: ['left', 'right', 'center'],
},
rotationAxis: {
control: {
type: 'check',
options: ['x', 'y', 'z'],
},
control: 'check',
options: ['x', 'y', 'z'],
},
scaling: {
control: 'select',
Expand Down

0 comments on commit acace30

Please sign in to comment.