Skip to content

Commit

Permalink
fix: [ANDROAPP-6549] clear input when click save button (#3920)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmmateos authored Dec 10, 2024
1 parent d8754d4 commit 749bfe9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,8 @@ fun DataSetTableScreen(
if (isKeyboardOpen == Keyboard.Closed) {
if (tableConfiguration.textInputViewMode) {
focusManager.clearFocus(true)
} else if (bottomSheetState.bottomSheetState.isExpanded) {
} else {
collapseBottomSheet(true)
bottomSheetState.bottomSheetState.collapse()
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ fun ManageStockTable(
tableDimensions = dimensions,
tableConfiguration = TableConfiguration(
headerActionsEnabled = false,
textInputViewMode = false,
),
tableValidator = viewModel,
tableResizeActions = tableResizeActions,
Expand Down

0 comments on commit 749bfe9

Please sign in to comment.