feat(core): show sync state at doc info (#7244)

This commit is contained in:
EYHN
2024-06-18 08:35:22 +00:00
parent ea718d30e9
commit 98258b0211
9 changed files with 154 additions and 41 deletions
@@ -14,7 +14,7 @@ export function useDocEngineStatus() {
() => ({
...engineState,
progress,
syncing: engineState.syncing > 0,
syncing: engineState.syncing > 0 || engineState.retrying,
}),
[engineState, progress]
);