improvement: Limit the max lines of generic fields to 64

This commit is contained in:
Artem Chepurnoy 2024-11-19 15:26:10 +02:00
parent 2df62a995a
commit 1927b066d8
No known key found for this signature in database
GPG Key ID: FAC37D0CF674043E
1 changed files with 1 additions and 1 deletions

View File

@ -2742,7 +2742,7 @@ suspend fun RememberStateFlowScope.create(
leading: (@Composable RowScope.() -> Unit)? = null, leading: (@Composable RowScope.() -> Unit)? = null,
verify: ((() -> Unit) -> Unit)? = null, verify: ((() -> Unit) -> Unit)? = null,
onBuildActions: (ContextItemBuilder.() -> Unit)? = null, onBuildActions: (ContextItemBuilder.() -> Unit)? = null,
maxLines: Int = Int.MAX_VALUE, maxLines: Int = 64,
password: Boolean = false, password: Boolean = false,
username: Boolean = false, username: Boolean = false,
private: Boolean = false, private: Boolean = false,