Skip to content

Commit

Permalink
Merge branch 'master' into errorColor
Browse files Browse the repository at this point in the history
  • Loading branch information
carkom authored Oct 3, 2023
2 parents 16d3145 + d1e5734 commit 8aae84d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
6 changes: 6 additions & 0 deletions upcoming-release-notes/1752.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [carkom]
---

couple small regression fixes

0 comments on commit 8aae84d

Please sign in to comment.