Skip to content

Commit

Permalink
Fix "Name" field being in wrong colour in Schedules page (actualbudge…
Browse files Browse the repository at this point in the history
…t#3739)

* Fix schedule "Name" field being in wrong colour

* Add release note
  • Loading branch information
aappaapp authored Oct 27, 2024
1 parent f265dd9 commit b349edd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -283,9 +283,7 @@ export function SchedulesTable({
<Field width="flex" name="name">
<Text
style={
schedule.name == null
? { color: theme.buttonNormalDisabledText }
: null
!schedule.name ? { color: theme.buttonNormalDisabledText } : null
}
title={schedule.name ? schedule.name : ''}
>
Expand Down
6 changes: 6 additions & 0 deletions upcoming-release-notes/3739.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [aappaapp]
---

Fix "Name" field being in wrong colour in Schedules page

0 comments on commit b349edd

Please sign in to comment.