mirror of
https://github.com/InsanusMokrassar/JSUIKitKBindings.git
synced 2024-11-26 12:08:46 +00:00
value in StandardInput is nullable
This commit is contained in:
parent
1eb14becde
commit
8178fa9d39
@ -11,7 +11,7 @@ import org.w3c.dom.HTMLInputElement
|
||||
@Composable
|
||||
fun <T> StandardInput(
|
||||
type: InputType<T>,
|
||||
value: T,
|
||||
value: T? = null,
|
||||
vararg modifiers: UIKitModifier,
|
||||
disabled: Boolean = false,
|
||||
placeholder: String? = null,
|
||||
@ -24,7 +24,7 @@ fun <T> StandardInput(
|
||||
|
||||
placeholder ?.let(::placeholder)
|
||||
|
||||
value.let {
|
||||
value ?.let {
|
||||
when (it) {
|
||||
is String -> value(it)
|
||||
is Number -> value(it)
|
||||
|
Loading…
Reference in New Issue
Block a user