summaryrefslogtreecommitdiff
path: root/gui/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'gui/src/components')
-rw-r--r--gui/src/components/feed/PostList.tsx2
-rw-r--r--gui/src/components/post/Footer.tsx3
-rw-r--r--gui/src/components/post/Quote.tsx3
3 files changed, 5 insertions, 3 deletions
diff --git a/gui/src/components/feed/PostList.tsx b/gui/src/components/feed/PostList.tsx
index b09a0e9..0d01bd2 100644
--- a/gui/src/components/feed/PostList.tsx
+++ b/gui/src/components/feed/PostList.tsx
@@ -20,6 +20,8 @@ function TrillFeed({ data, refetch }: { data: FC; refetch: Function }) {
return (
<>
{Object.keys(data.feed)
+ // omit replies
+ .filter((i) => !data.feed[i].parent)
.sort()
.reverse()
.slice(0, 50)
diff --git a/gui/src/components/post/Footer.tsx b/gui/src/components/post/Footer.tsx
index 5b79da0..a87c1f8 100644
--- a/gui/src/components/post/Footer.tsx
+++ b/gui/src/components/post/Footer.tsx
@@ -41,6 +41,7 @@ function Footer({ poast, refetch }: PostProps) {
// Scroll to top where composer is located
window.scrollTo({ top: 0, behavior: "smooth" });
}
+ console.log({ poast });
const childrenCount = poast.children
? poast.children.length
? poast.children.length
@@ -52,7 +53,7 @@ function Footer({ poast, refetch }: PostProps) {
e.preventDefault();
const r = await api!.deletePost(our);
if (r) toast.success("Repost deleted");
- refetch();
+ // refetch();
if (location.includes(poast.id)) navigate("/");
}
async function sendRP(e: React.MouseEvent) {
diff --git a/gui/src/components/post/Quote.tsx b/gui/src/components/post/Quote.tsx
index 28149f0..98720ea 100644
--- a/gui/src/components/post/Quote.tsx
+++ b/gui/src/components/post/Quote.tsx
@@ -49,12 +49,11 @@ function Quote({
return (
<div onMouseUp={gotoQuote} className="quote-in-post">
<header className="btw">
- (
<div className="quote-author flex">
<Sigil patp={data.author} size={20} />
{data.author}
</div>
- )<span>{date_diff(data.time, "short")}</span>
+ <span>{date_diff(data.time, "short")}</span>
</header>
<Body poast={data} nest={nest} refetch={refetch!} />
</div>