fix federation widget

This commit is contained in:
syuilo 2022-01-31 16:50:40 +09:00 committed by GitHub
parent f2b40b51c2
commit d72f0779b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -58,7 +58,7 @@ const fetch = async () => {
sort: '+lastCommunicatedAt',
limit: 5
});
const fetchedCharts = await Promise.all(instances.map(i => os.api('charts/instance', { host: i.host, limit: 16, span: 'hour' })));
const fetchedCharts = await Promise.all(fetchedInstances.map(i => os.api('charts/instance', { host: i.host, limit: 16, span: 'hour' })));
instances.value = fetchedInstances;
charts.value = fetchedCharts;
fetching.value = false;