Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
canifa_note
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vũ Hoàng Anh
canifa_note
Commits
6b0736b2
Unverified
Commit
6b0736b2
authored
Feb 26, 2026
by
milvasic
Committed by
GitHub
Feb 26, 2026
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(ui): show comment editor above the comment list (#5662)
parent
f7ac6a01
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
12 deletions
+12
-12
MemoDetail.tsx
web/src/pages/MemoDetail.tsx
+12
-12
No files found.
web/src/pages/MemoDetail.tsx
View file @
6b0736b2
...
...
@@ -99,6 +99,18 @@ const MemoDetail = () => {
{
t
(
"memo.comment.self"
)
}
</
h2
>
<
div
className=
"relative mx-auto grow w-full min-h-full flex flex-col justify-start items-start gap-y-1"
>
{
showCommentEditor
&&
(
<
div
className=
"w-full mb-2"
>
<
MemoEditor
cacheKey=
{
`${memo.name}-${memo.updateTime}-comment`
}
placeholder=
{
t
(
"editor.add-your-comment-here"
)
}
parentMemoName=
{
memo
.
name
}
autoFocus
onConfirm=
{
handleCommentCreated
}
onCancel=
{
()
=>
setShowCommentEditor
(
false
)
}
/>
</
div
>
)
}
{
comments
.
length
===
0
?
(
showCreateCommentButton
&&
(
<
div
className=
"w-full flex flex-row justify-center items-center py-6"
>
...
...
@@ -134,18 +146,6 @@ const MemoDetail = () => {
</>
)
}
</
div
>
{
showCommentEditor
&&
(
<
div
className=
"w-full"
>
<
MemoEditor
cacheKey=
{
`${memo.name}-${memo.updateTime}-comment`
}
placeholder=
{
t
(
"editor.add-your-comment-here"
)
}
parentMemoName=
{
memo
.
name
}
autoFocus
onConfirm=
{
handleCommentCreated
}
onCancel=
{
()
=>
setShowCommentEditor
(
false
)
}
/>
</
div
>
)
}
</
div
>
</
div
>
{
md
&&
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment