Skip to content

Commit

Permalink
fix(common): upgrade intellij plugin to 1.17.2
Browse files Browse the repository at this point in the history
Signed-off-by: Cloorc <13597105+cloorc@users.noreply.github.com>
  • Loading branch information
cloorc committed Aug 10, 2024
1 parent 911769e commit cea8929
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ sinceIdeaBuild=223
projectVersion=1.3.1-SNAPSHOT
jetBrainsToken=invalid
jetBrainsChannel=stable
intellijPluginVersion=1.16.1
intellijPluginVersion=1.17.2
kotlinJvmPluginVersion=1.8.0
intellijCommonVersion=1.9.6-SNAPSHOT
telemetryPluginVersion=1.1.0.52
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class APIResources(private val client: ClientAdapter<out KubernetesClient>) {
}

private fun getByKind(kind: String, resources: List<APIResource>): APIResource? {
val plural = Pluralize.toPlural(kind).toLowerCase()
val plural = Pluralize.toPlural(kind).lowercase()
return resources.firstOrNull {
plural == it.name
}
Expand Down

0 comments on commit cea8929

Please sign in to comment.