Skip to content

Commit

Permalink
Bug fix (#742)
Browse files Browse the repository at this point in the history
  • Loading branch information
kushjajal7 authored Jan 30, 2025
1 parent 4aa2d78 commit ffdb12e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,9 @@ func createMetadata(meta interface{}) map[string]interface{} {
for _, entity := range resp.Entities {

if entity.Status.Name == projName {
projRef["name"] = resp.Entities[0].Status.Name
projRef["name"] = entity.Status.Name
projRef["kind"] = "project"
projRef["uuid"] = resp.Entities[0].Status.UUID
projRef["uuid"] = entity.Status.UUID
}
}

Expand Down

0 comments on commit ffdb12e

Please sign in to comment.