fix federation widget

This commit is contained in:
syuilo 2022-01-31 16:50:40 +09:00 committed by GitHub
parent 03f9c73bc5
commit 9450fb4ddb

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;