fixed the order by id asc in the allowed entry types
This commit is contained in:
@@ -676,7 +676,7 @@ async function main() {
|
||||
{ name: "We provide basic advice to travelers about wildlife safety.", points: 5 },
|
||||
{ name: "We conduct guided tours with trained personnel and provide detailed safety briefings.", points: 8 },
|
||||
{ name: "We implement comprehensive wildlife safety measures, including trained guides, safety equipment, and collaboration with wildlife experts.", points: 10 },
|
||||
{ name: "Not applicable.", points: 10 }
|
||||
{ name: "Not applicable.", points: 0 }
|
||||
]
|
||||
},
|
||||
{
|
||||
|
||||
@@ -179,7 +179,7 @@ export class PrePopulateService {
|
||||
}),
|
||||
this.prisma.allowedEntryTypes.findMany({
|
||||
where: { isActive: true },
|
||||
orderBy: { allowedEntryTypeName: 'asc' }
|
||||
orderBy: { id: 'asc' }
|
||||
}),
|
||||
this.prisma.ageRestrictions.findMany({
|
||||
where: { isActive: true },
|
||||
|
||||
Reference in New Issue
Block a user