chore: fix the extra comment icon at the end and change the icon pointer

This commit is contained in:
Rajesh Jonnalagadda
2024-11-28 04:27:47 +05:30
parent 7d0c8e30e0
commit ea285c2131
6 changed files with 10 additions and 6 deletions
+1 -1
View File
@@ -482,7 +482,7 @@ func (diff *Diff) LoadComments(ctx context.Context, issue *issues_model.Issue, c
if lineCommits, ok := allComments[file.Name]; ok {
for _, section := range file.Sections {
for _, line := range section.Lines {
if line.SectionInfo != nil {
if line.SectionInfo != nil && line.SectionInfo.RightHunkSize > 0 {
start := int64(line.SectionInfo.LastRightIdx + 1)
end := int64(line.SectionInfo.RightIdx - 1)
for start <= end {