Fix some bugs with deriving events by url

This commit is contained in:
Jon Staab
2025-11-24 09:52:47 -08:00
parent 2fec078a5b
commit 250f5c772f
20 changed files with 455 additions and 360 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
import {readable} from 'svelte/store'
import {readable} from "svelte/store"
import {on, call} from "@welshman/lib"
import {deriveItems} from "@welshman/store"
import {getTopicTagValues} from "@welshman/util"
@@ -29,7 +29,7 @@ export const topicsByName = call(() => {
}
return readable<Map<string, Topic>>(topicsByName, set => {
return on(repository, 'update', ({added}) => {
return on(repository, "update", ({added}) => {
let dirty = false
for (const event of added) {