Compare commits

..

4 Commits

2 changed files with 5 additions and 3 deletions

View File

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

View File

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