Skip to content

Commit

Permalink
🐛 Flip embedded/managed logic for dependency management col (#1571)
Browse files Browse the repository at this point in the history
- Correctly display the managed value 
- Resolves https://issues.redhat.com/browse/MTA-1740

Signed-off-by: ibolton336 <[email protected]>
Co-authored-by: Scott Dickerson <[email protected]>
  • Loading branch information
ibolton336 and sjd78 authored Nov 29, 2023
1 parent 70d7db9 commit 925af84
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ const DependencyManagementColumn = ({
const isJavaFile = appDependency.dependency.name.endsWith(".jar");
const isJavaDependency = hasJavaLabel && isJavaFile;

return <TextContent>{isJavaDependency ? "Managed" : "Embedded"}</TextContent>;
return <TextContent>{isJavaDependency ? "Embedded" : "Managed"}</TextContent>;
};

const DependencyVersionColumn = ({
Expand Down

0 comments on commit 925af84

Please sign in to comment.