Skip to content

Commit

Permalink
Fix feed link input field not showing link in a single line
Browse files Browse the repository at this point in the history
  • Loading branch information
msasikanth committed Jun 15, 2023
1 parent 8e9efe5 commit ffc6736
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ internal fun FeedLinkInputField(
onValueChange = { input = it },
keyboardOptions = KeyboardOptions(imeAction = ImeAction.Done, keyboardType = KeyboardType.Uri),
keyboardActions = KeyboardActions(onDone = { onAddFeed() }),
maxLines = 1,
singleLine = true,
textStyle = MaterialTheme.typography.labelLarge,
shape = RoundedCornerShape(16.dp),
enabled = !isFetchingFeed,
Expand Down

0 comments on commit ffc6736

Please sign in to comment.