fix(create-freesewing-pattern): remove old departments
removed old departments from initial create-freesewing-pattern prompt and replaced with `tops` and `bottoms`
This commit is contained in:
parent
e3e619ee0c
commit
fdbc4033a2
1 changed files with 5 additions and 5 deletions
|
@ -97,19 +97,19 @@ module.exports = async opts => {
|
||||||
message: info => strings[info.language]['filter.department.title'],
|
message: info => strings[info.language]['filter.department.title'],
|
||||||
choices: info => [
|
choices: info => [
|
||||||
{
|
{
|
||||||
name: strings[info.language]['filter.department.menswear'],
|
name: strings[info.language]['filter.department.tops'],
|
||||||
value: 'menswear'
|
value: 'tops'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: strings[info.language]['filter.department.womenswear'],
|
name: strings[info.language]['filter.department.bottoms'],
|
||||||
value: 'womenswear'
|
value: 'bottoms'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: strings[info.language]['filter.department.accessories'],
|
name: strings[info.language]['filter.department.accessories'],
|
||||||
value: 'accessories'
|
value: 'accessories'
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
default: 'womenswear'
|
default: 'tops'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'input',
|
type: 'input',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue