mirror of
https://codeberg.org/Hyperpipe/Hyperpipe
synced 2025-06-28 21:18:01 +02:00
Cleanup:
- smaller json structure for xml conv - fix minor typos and bugs in scripts/ - parallel fetching upto 2 concurrent segments
This commit is contained in:
parent
62e7cffbc4
commit
c7add3708e
15 changed files with 115 additions and 148 deletions
|
@ -32,7 +32,9 @@ async function getCharts() {
|
|||
console.log(json);
|
||||
|
||||
if (!id.value)
|
||||
id.value = json.options.all.find(i => store.cc ? i.id == store.cc : i.title == json.options.default).id;
|
||||
id.value = json.options.all.find(i =>
|
||||
store.cc ? i.id == store.cc : i.title == json.options.default,
|
||||
).id;
|
||||
|
||||
for (const country of json.options.all) {
|
||||
const locId = `countries.${country.id}`,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue