Skip to content

Commit

Permalink
Fixed missing dependencies in the dependency table.
Browse files Browse the repository at this point in the history
  • Loading branch information
pme123 committed Jan 16, 2025
1 parent a4781a7 commit 1be2d62
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ trait DocCreator extends DependencyCreator, Helpers:
c.dependencies
.find: c3 =>
val version2 = c2.projectVersion.minorVersion + "."
c3.projectName == c2.projectName && c3.toString.startsWith(version2)
c3.projectName == c2.projectName && c3.projectVersion.toString.startsWith(version2)
.map(_ => c2.projectVersion)
.getOrElse("")
)
Expand Down

0 comments on commit 1be2d62

Please sign in to comment.