Rename reply to comment

This commit is contained in:
Jon Staab
2024-10-24 13:05:25 -07:00
parent 627407848f
commit c349371cd5
12 changed files with 29 additions and 29 deletions
+2 -2
View File
@@ -12,7 +12,7 @@
import ReactionSummary from "@app/components/ReactionSummary.svelte"
import ThreadMenu from "@app/components/ThreadMenu.svelte"
import {publishDelete, publishReaction} from "@app/commands"
import {REPLY} from "@app/state"
import {COMMENT} from "@app/state"
export let url
export let event
@@ -20,7 +20,7 @@
const deleted = deriveIsDeleted(repository, event)
const replies = deriveEvents(repository, {filters: [{kinds: [REPLY], "#E": [event.id]}]})
const replies = deriveEvents(repository, {filters: [{kinds: [COMMENT], "#E": [event.id]}]})
const showPopover = () => popover.show()