wip: css and ui packages

This commit is contained in:
Adam 2025-10-14 07:14:26 -05:00
commit 37e6c8342f
No known key found for this signature in database
GPG key ID: 9CB48779AF150E75
28 changed files with 2392 additions and 123 deletions

View file

@ -146,7 +146,10 @@ function init() {
}
for (const p of sync.data.changes) {
if (store.node[p.path] === undefined) {
fetch(p.path).then(() => setStore("node", p.path, "status", p))
fetch(p.path).then(() => {
if (store.node[p.path] === undefined) return
setStore("node", p.path, "status", p)
})
} else {
setStore("node", p.path, "status", p)
}