Skip to content

Commit

Permalink
Update dep/app table version link isJavaDependency check
Browse files Browse the repository at this point in the history
Signed-off-by: Scott J Dickerson <[email protected]>
  • Loading branch information
sjd78 committed Nov 15, 2023
1 parent 89bdfda commit 4672df5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ const DependencyVersionColumn = ({
}: {
appDependency: AnalysisAppDependency;
}) => {
const isJavaDependency = name && version && sha && provider === "";
const isJavaDependency = name && version && sha && provider === "java";

const mavenCentralLink = isJavaDependency
? `https://search.maven.org/search?q=1:${extractFirstSha(sha)}`
Expand Down

0 comments on commit 4672df5

Please sign in to comment.