|
|
@@ -187,7 +187,7 @@ const verifyData = () => {
|
|
|
invalidSolutions.push(solution)
|
|
|
}
|
|
|
});
|
|
|
- dataCount.value = invalidSolutions.length;
|
|
|
+ dataCount.value = `${invalidSolutions.length}`;
|
|
|
showDataPretty(invalidSolutions, 2);
|
|
|
console.log('invalidSolutions', invalidSolutions);
|
|
|
}
|
|
|
@@ -198,7 +198,7 @@ const filterLive = () => {
|
|
|
const { info: { ob, hg, ps } } = solution;
|
|
|
return ps.stage;
|
|
|
});
|
|
|
- dataCount.value = liveSolutions.length;
|
|
|
+ dataCount.value = `${liveSolutions.length}`;
|
|
|
showDataPretty(liveSolutions, 2);
|
|
|
console.log('liveSolutions', liveSolutions);
|
|
|
}
|