Minor text change
This commit is contained in:
parent
0907e2b7bd
commit
7b87c92139
1 changed files with 2 additions and 2 deletions
|
@ -21,13 +21,13 @@ export function PostSegment({ post }: { post: Post }): JSXElement {
|
|||
<div class="card compact w-full flex-grow border-b-2 border-b-primary bg-base-200 text-base-content transition-all hover:bg-base-300">
|
||||
<div class="card-body md:mx-6">
|
||||
<div class="flex flex-row justify-between">
|
||||
<h3>{dateOfCreation}</h3>
|
||||
<p class="text-xs">{dateOfCreation}</p>
|
||||
<ReportButton />
|
||||
</div>
|
||||
<Show when={isEdited}>
|
||||
<p>This post has been edited</p>
|
||||
</Show>
|
||||
<p class="break-words text-base-content md:pt-2">{post.content}</p>
|
||||
<p class="text-base my-5">{post.content}</p>
|
||||
<div class="card-actions justify-between">
|
||||
<div class="flex">
|
||||
<EngagementButton post={post} />
|
||||
|
|
Loading…
Reference in a new issue