Skip to content

Commit

Permalink
docs: Fixing Controls check type issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jungpaeng committed Mar 28, 2023
1 parent fe8e646 commit e9be252
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 24 deletions.
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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 e9be252

Please sign in to comment.