Skip to content

Commit

Permalink
♻️ Move field order #1752
Browse files Browse the repository at this point in the history
  • Loading branch information
millianapia committed Feb 20, 2024
1 parent 4bf9ec8 commit 8249dfa
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions sanityv3/schemas/objects/figure.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,18 @@ export default {
},
],
fields: [
{
name: 'aspectRatio',
type: 'string',
title: 'Aspect ratio',
options: {
list: [
{ title: 'original', value: 'original' },
{ title: '16:9', value: '16:9' },
],
},
initialValue: '16:9',
},
{
name: 'figure',
title: 'Image',
Expand All @@ -34,18 +46,6 @@ export default {
type: 'colorlist',
fieldset: 'design',
},
{
name: 'aspectRatio',
type: 'string',
title: 'Aspect ratio',
options: {
list: [
{ title: 'original', value: 'original' },
{ title: '16:9', value: '16:9' },
],
},
initialValue: '16:9',
},
],
preview: {
select: {
Expand Down

0 comments on commit 8249dfa

Please sign in to comment.