Skip to content

Commit

Permalink
Regression fixes (#1752)
Browse files Browse the repository at this point in the history
* regression fixes

* notes

* VRT updates
  • Loading branch information
carkom authored Oct 2, 2023
1 parent 9ca36f3 commit d1e5734
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 d1e5734

Please sign in to comment.