We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e98281 commit 64df23bCopy full SHA for 64df23b
src/main/kotlin/com/theapache64/stackzy/ui/feature/appdetail/AppDetailViewModel.kt
@@ -334,7 +334,7 @@ class AppDetailViewModel @Inject constructor(
334
trackUntrackedLibs(report)
335
_analysisReport.value = AnalysisReportWrapper(
336
report,
337
- report.libraries.map { LibraryWrapper(it) }
+ report.libraries.sortedBy { it.id }.map { LibraryWrapper(it) }
338
)
339
_loadingMessage.value = null
340
}
0 commit comments