Skip to content

Commit

Permalink
feat(fossid-webapp): Make the comment of a project optional
Browse files Browse the repository at this point in the history
It seems that with latest FossID releases the comment property is now
optional. No public changelog is available though.

Signed-off-by: Nicolas Nobelis <[email protected]>
  • Loading branch information
nnobelis authored and sschuberth committed Dec 7, 2023
1 parent 9b3349d commit eaa29e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clients/fossid-webapp/src/main/kotlin/model/Project.kt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ data class Project(
val productName: String?,

val description: String?,
val comment: String,
val comment: String?,

val isArchived: Int,
val jiraProjectKey: String?,
Expand Down

0 comments on commit eaa29e5

Please sign in to comment.