I have the following code: ``` Out...
# compose-desktop
y
I have the following code:
Copy code
OutlinedTextField(searchFilter.value,
                    onValueChange = { searchFilter.value = it },
                    trailingIcon = {
                        Icon(
                            Icons.Outlined.Search,
                            contentDescription = "filter",
                        )
                    },
                    modifier = Modifier.height(40.dp) // with or without
                )
The resulting is shown in the screenshot: On the left is without the
modifier = Modifier.height(40.dp)
line and on the right with it (this is the "standard" dense version of the component as per Material design recommendation). The issue is the dense version (on the right) does not let me enter anything... Am I doing something wrong or is this a bug?