Procházet zdrojové kódy

fix: use priceStep exists filter instead of non-existent isVerified column

gangvy před 5 měsíci
rodič
revize
809b899b9f
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      src/app/app.ts

+ 1 - 1
src/app/app.ts

@@ -168,7 +168,7 @@ export class App implements OnInit {
     this.apigListLoading = true;
     try {
       const query: any = {
-        where: JSON.stringify({ isVerified: true }),
+        where: JSON.stringify({ priceStep: { $exists: true } }),
         keys: 'title,content,priceStep',
         order: '-updatedAt',
         limit: '20'