Skip to content

Commit

Permalink
Merge pull request #77 from entando/ENG-3052
Browse files Browse the repository at this point in the history
ENG-3052 Fix asset name mapping
  • Loading branch information
raxkaynan authored Mar 17, 2022
2 parents 518d1ad + f9fee82 commit 0f3bd85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/env-bundler.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const componentDetailExtractors = {
}),
asset: (components) =>
components.map((c) => {
return { value: c.correlationCode, name: `(${c.type}) ${c.path}` };
return { value: c.correlationCode, name: `(${c.type}) ${c.name}` };
}),
group: (components) =>
components.map((c) => {
Expand Down

0 comments on commit 0f3bd85

Please sign in to comment.