More work on getting post and comment editing working.

This commit is contained in:
Scott Idem
2024-11-05 16:33:24 -05:00
parent cf997601f4
commit 4d667d57a4
7 changed files with 440 additions and 82 deletions

View File

@@ -55,6 +55,13 @@ $: lq__post_comment_obj_li = liveQuery(async () => {
return results;
});
$: lq__post_comment_obj = liveQuery(async () => {
let results = await db_posts.comment
.get($idaa_slct.post_comment_id);
return results;
});
</script>
@@ -123,6 +130,7 @@ $: lq__post_comment_obj_li = liveQuery(async () => {
<Comp__post_obj_id_view
lq__post_obj={lq__post_obj}
lq__post_comment_obj_li={lq__post_comment_obj_li}
lq__post_comment_obj={lq__post_comment_obj}
/>
</Modal>
</Modal>