fix federation widged (#8221)
The variables accidentally shadowed the variables that contain the ref's to be rendered into the template.
This commit is contained in:
		
							parent
							
								
									55b3ae22ee
								
							
						
					
					
						commit
						ea5148ca0f
					
				
					 1 changed files with 4 additions and 4 deletions
				
			
		|  | @ -54,13 +54,13 @@ const charts = ref([]); | |||
| const fetching = ref(true); | ||||
| 
 | ||||
| const fetch = async () => { | ||||
| 	const instances = await os.api('federation/instances', { | ||||
| 	const fetchedInstances = await os.api('federation/instances', { | ||||
| 		sort: '+lastCommunicatedAt', | ||||
| 		limit: 5 | ||||
| 	}); | ||||
| 	const charts = await Promise.all(instances.map(i => os.api('charts/instance', { host: i.host, limit: 16, span: 'hour' }))); | ||||
| 	instances.value = instances; | ||||
| 	charts.value = charts; | ||||
| 	const fetchedCharts = await Promise.all(instances.map(i => os.api('charts/instance', { host: i.host, limit: 16, span: 'hour' }))); | ||||
| 	instances.value = fetchedInstances; | ||||
| 	charts.value = fetchedCharts; | ||||
| 	fetching.value = false; | ||||
| }; | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue