Skip to content

Commit

Permalink
regression fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
carkom committed Sep 29, 2023
1 parent 9ca36f3 commit 1bcac0c
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 @@ -379,7 +379,6 @@ export function BudgetSummary({ month }: BudgetSummaryProps) {
fontWeight: 500,
textDecorationSkip: 'ink',
},
currentMonth === month && { textDecoration: 'underline' },
])}`}
>
{monthUtils.format(month, 'MMMM')}
Expand Down Expand Up @@ -473,7 +472,7 @@ export function BudgetSummary({ month }: BudgetSummaryProps) {
padding: '10px 20px',
justifyContent: 'space-between',
backgroundColor: theme.tableRowHeaderBackground,
borderTop: '1px solid ' + theme.tableRowHeaderText,
borderTop: '1px solid ' + theme.tableBorder,
}}
>
<Saved projected={month >= currentMonth} />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ function ConfigureField({
<Stack direction="row" align="flex-start">
{field === 'amount' || field === 'date' ? (
<Select
bare
options={
field === 'amount'
? [
Expand Down

0 comments on commit 1bcac0c

Please sign in to comment.