From f0547787cd02a9e4f4f99747097241a4d636bcf3 Mon Sep 17 00:00:00 2001 From: hendraaagil Date: Sat, 10 Jul 2021 10:31:11 +0700 Subject: [PATCH] feat: fix queueBed value --- index.html | 2 +- src/scrape/bed-detail.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 54597e1..78c1fb5 100644 --- a/index.html +++ b/index.html @@ -40,7 +40,7 @@

RS Bed Covid API

NB: Untuk melihat daftar id provinsi, Anda bisa menggunakan API get provinces terlebih dahulu.
- NB: Untuk melihat daftar id kota atau kecamatan, Anda bisa menggunakan API get cities terlebih dahulu terlebih dahulu. + NB: Untuk melihat daftar id kota atau kecamatan, Anda bisa menggunakan API get cities terlebih dahulu.
NB: Query string type memiliki 2 optional value: 1 untuk covid dan 2 untuk non-covid
diff --git a/src/scrape/bed-detail.ts b/src/scrape/bed-detail.ts index 97ac3c8..38ed205 100644 --- a/src/scrape/bed-detail.ts +++ b/src/scrape/bed-detail.ts @@ -52,7 +52,7 @@ export const getBedDetail = async ( .trim() const queueBed: number = +$(el) .find( - ".card > .card-body > .row > .col-md-6.col-12:nth-child(2) .col-md-4.col-4:nth-child(2) > div.text-center.pt-1.pb-1 > div:nth-child(3)", + ".card > .card-body > .row > .col-md-6.col-12:nth-child(2) .col-md-4.col-4:nth-child(3) > div.text-center.pt-1.pb-1 > div:nth-child(2)", ) .text() .trim()