This commit is contained in:
James Cole
2020-08-20 17:57:19 +02:00
parent 229d4bfe6b
commit d78d2f25eb
12 changed files with 151 additions and 196 deletions

View File

@@ -198,7 +198,7 @@
for (const key in res.data.data) {
if (res.data.data.hasOwnProperty(key) && /^0$|^[1-9]\d*$/.test(key) && key <= 4294967294) {
if (res.data.data[key].attributes.enabled) {
console.log(res.data.data[key].attributes);
// console.log(res.data.data[key].attributes);
this.currencies.push(res.data.data[key]);
this.enabledCurrencies.push(res.data.data[key]);
}