Browse Source

Fix typo in image.go (#306)

lenth -> length
pull/310/head
Ikko Eltociear Ashimine 2 years ago committed by GitHub
parent
commit
13679ff301
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      backend/app/service/image.go

6
backend/app/service/image.go

@ -54,8 +54,8 @@ func (u *ImageService) Page(req dto.SearchWithPage) (int64, interface{}, error)
return 0, nil, err return 0, nil, err
} }
if len(req.Info) != 0 { if len(req.Info) != 0 {
lenth, count := len(list), 0 length, count := len(list), 0
for count < lenth { for count < length {
hasTag := false hasTag := false
for _, tag := range list[count].RepoTags { for _, tag := range list[count].RepoTags {
if strings.Contains(tag, req.Info) { if strings.Contains(tag, req.Info) {
@ -65,7 +65,7 @@ func (u *ImageService) Page(req dto.SearchWithPage) (int64, interface{}, error)
} }
if !hasTag { if !hasTag {
list = append(list[:count], list[(count+1):]...) list = append(list[:count], list[(count+1):]...)
lenth-- length--
} else { } else {
count++ count++
} }

Loading…
Cancel
Save