Compare commits

...

2 Commits

Author SHA1 Message Date
Henry
fbfdec1bbf fix: remove version from docker compose 2025-06-13 21:42:16 +01:00
Henry
f0e3c4c3e2 fix: render comments inside contenteditable (#79) 2025-06-13 09:23:55 +01:00
2 changed files with 5 additions and 3 deletions

View File

@@ -132,7 +132,11 @@ const Comment = ({
)}
</div>
{!isEditing ? (
<p className="mt-2 text-sm">{comment}</p>
<ContentEditable
html={comment ?? ""}
disabled={true}
className="mt-2 text-sm"
/>
) : (
<form onSubmit={handleSubmit(onSubmit)}>
<ContentEditable

View File

@@ -1,5 +1,3 @@
version: "3.7"
services:
web:
image: ghcr.io/kanbn/kan:latest