Compare commits

...

4 Commits

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