Skip to content

Commit

Permalink
fixed organizationName with null
Browse files Browse the repository at this point in the history
  • Loading branch information
nulls committed Oct 18, 2023
1 parent e116782 commit 2c82fb9
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,9 @@ val createVulnerabilityView: VFC = VFC {
headers = jsonHeaders,
params = jso<dynamic> {
this.isGenerateIdentifier = isGenerateIdentifier
organizationName = selectedOrganizationName
selectedOrganizationName?.let {
organizationName = it
}
},
body = Json.encodeToString(cosv),
loadingHandler = ::loadingHandler,
Expand Down

0 comments on commit 2c82fb9

Please sign in to comment.