Skip to content

Commit

Permalink
fix: fix review
Browse files Browse the repository at this point in the history
  • Loading branch information
lichunn committed Dec 19, 2024
1 parent 47366e9 commit 210c9dd
Showing 1 changed file with 2 additions and 38 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -333,44 +333,8 @@ export default {
}
]
const sizeOptions = [
{
label: '9',
value: '9'
},
{
label: '10',
value: '10'
},
{
label: '11',
value: '11'
},
{
label: '12',
value: '12'
},
{
label: '14',
value: '14'
},
{
label: '16',
value: '16'
},
{
label: '18',
value: '18'
},
{
label: '20',
value: '20'
},
{
label: '24',
value: '24'
}
]
const sizes = ['9', '10', '11', '12', '14', '16', '18', '20', '24']
const sizeOptions = sizes.map((size) => ({ label: size, value: size }))
const alignOptions = [
{
Expand Down

0 comments on commit 210c9dd

Please sign in to comment.