Fixed showcased not inserted in networks seed file.
This commit is contained in:
parent
22512833da
commit
236d4a9427
|
@ -687,6 +687,7 @@ exports.seed = (knex) => Promise.resolve()
|
|||
url: network.url,
|
||||
description: network.description,
|
||||
has_logo: network.hasLogo,
|
||||
showcased: network.showcased,
|
||||
parameters: network.parameters,
|
||||
parent_id: grandParentNetworksBySlug[network.parent] || null,
|
||||
}));
|
||||
|
@ -702,6 +703,7 @@ exports.seed = (knex) => Promise.resolve()
|
|||
url: network.url,
|
||||
description: network.description,
|
||||
has_logo: network.hasLogo,
|
||||
showcased: network.showcased,
|
||||
parameters: network.parameters,
|
||||
parent_id: parentNetworksBySlug[network.parent] || grandParentNetworksBySlug[network.parent] || null,
|
||||
}));
|
||||
|
|
Loading…
Reference in New Issue