diff --git a/invert-report/src/jsMain/kotlin/ui/BootstrapComposables.kt b/invert-report/src/jsMain/kotlin/ui/BootstrapComposables.kt index ffcad23..0bd6503 100644 --- a/invert-report/src/jsMain/kotlin/ui/BootstrapComposables.kt +++ b/invert-report/src/jsMain/kotlin/ui/BootstrapComposables.kt @@ -239,7 +239,7 @@ fun BootstrapTable( var sortIdx by remember { mutableStateOf(sortByColumn) } var ascending by remember { mutableStateOf(sortAscending) } - val sortedRows = if (enableSorting && types != null) { + val sortedRows = if (enableSorting) { val typeToSortBy = types[sortIdx] val sorted1 = when (typeToSortBy) { Int::class -> { diff --git a/invert.init.script.gradle.kts b/invert.init.script.gradle.kts index 090418f..de1de69 100644 --- a/invert.init.script.gradle.kts +++ b/invert.init.script.gradle.kts @@ -3,6 +3,7 @@ import com.squareup.invert.InvertGradlePlugin initscript { repositories { + mavenLocal() mavenCentral() gradlePluginPortal() // SNAPSHOT Versions @@ -27,9 +28,9 @@ class InvertInitScriptPlugin : Plugin { gradle.rootProject { buildscript { repositories { + mavenLocal() mavenCentral() gradlePluginPortal() - mavenLocal() // SNAPSHOT Versions maven { url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots") diff --git a/scripts/github-pages.main.kts b/scripts/github-pages.main.kts index 2630739..d3a22d9 100755 --- a/scripts/github-pages.main.kts +++ b/scripts/github-pages.main.kts @@ -211,10 +211,6 @@ val OTHER_REPOS_TO_CONSIDER = listOf( org = "android", project = "nowinandroid", ), - TargetRepo( - org = "handstandsam", - project = "ShoppingApp", - ), TargetRepo( org = "rickbusarow", project = "ModuleCheck", @@ -223,6 +219,10 @@ val OTHER_REPOS_TO_CONSIDER = listOf( ) val ALL_REPOS = listOf( + TargetRepo( + org = "handstandsam", + project = "ShoppingApp", + ), TargetRepo( runOnGitHubAction = false, org = "JetBrains", @@ -325,7 +325,6 @@ val ALL_REPOS = listOf( true } } - .filter { it.org == "flipperdevices" } val CLONES_DIR = File("build/clones").apply { if (!exists()) {