selectBoxesWidth was to large for month select box
This commit is contained in:
parent
0e4723389f
commit
0ae96675c1
|
@ -69,7 +69,7 @@ fun FilterBar() {
|
|||
selectedItem = transactionsFilter.value.year,
|
||||
onSelectedItemChanged = { year -> transactionsFilter.value.year = year },
|
||||
getItemDisplayText = { year -> if (year == null) "" else year.toString() },
|
||||
modifier = Modifier.width(selectBoxesWidth).padding(horizontal = horizontalPadding)
|
||||
modifier = Modifier.width(125.dp).padding(horizontal = horizontalPadding)
|
||||
)
|
||||
|
||||
if (transactionsFilter.value.year != null) {
|
||||
|
|
Loading…
Reference in New Issue