Skip to content

Commit

Permalink
Making ticket detail info optional
Browse files Browse the repository at this point in the history
  • Loading branch information
NovaFox161 committed Sep 6, 2024
1 parent 9d2681e commit 1a80b72
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,10 @@ class ComponentService(
val infoInput = TextInput.paragraph(
"ticket-detail.info",
localeService.getString(settings.locale, "modal.ticket-detail.info.label"),
localeService.getString(settings.locale, "modal.ticket-detail.info.placeholder")
)
0,
4000,
).placeholder(localeService.getString(settings.locale, "modal.ticket-detail.info.placeholder"))
.required(false)

return arrayOf(ActionRow.of(infoInput))
}
Expand Down

0 comments on commit 1a80b72

Please sign in to comment.