fill notifications and chart autoupdate

This commit is contained in:
tim
2024-10-29 16:30:05 -04:00
parent b9ca6ab2cc
commit 5d3d1d6f5a
5 changed files with 67 additions and 6 deletions

View File

@@ -373,6 +373,10 @@ const orders = computed(()=>{
}
result.sort((a,b)=>b.startTime-a.startTime)
// console.log('orders', result)
for( const st of result ) {
if( st.id in orderShapes )
orderShapes[st.id].update(st)
}
return result
})