Bugfix of setEdited, bordercolor swap
This commit is contained in:
parent
78ede1785a
commit
ac71cbd9e2
1 changed files with 2 additions and 2 deletions
|
@ -22,11 +22,11 @@ export function PostSegment(props: { post: Post }): JSXElement {
|
||||||
createEffect((): void => {
|
createEffect((): void => {
|
||||||
setUpdatedAt(new Date(local.post.createdAt).toDateString());
|
setUpdatedAt(new Date(local.post.createdAt).toDateString());
|
||||||
setCreatedAT(new Date(local.post.updatedAt).toDateString());
|
setCreatedAT(new Date(local.post.updatedAt).toDateString());
|
||||||
setEdited(updatedAt() === createdAt());
|
setEdited(!(updatedAt() === createdAt()));
|
||||||
});
|
});
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<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 compact w-full flex-grow border-b-2 border-b-info bg-base-200 text-base-content transition-all hover:bg-base-300">
|
||||||
<div class="card-body md:mx-6">
|
<div class="card-body md:mx-6">
|
||||||
<div class="flex flex-row justify-between">
|
<div class="flex flex-row justify-between">
|
||||||
<p class="text-xs">{createdAt()}</p>
|
<p class="text-xs">{createdAt()}</p>
|
||||||
|
|
Loading…
Reference in a new issue