Fixed showcased not inserted in networks seed file.

This commit is contained in:
DebaucheryLibrarian 2023-06-16 03:18:40 +02:00
parent 22512833da
commit 236d4a9427
1 changed files with 2 additions and 0 deletions

View File

@ -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,
}));