Skip to content

Commit 6fe032c

Browse files
committed
Fix badge dot color on due dates in grid rows
1 parent 4020cf6 commit 6fe032c

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

src/renderer/Grid/DatePickerInline.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,12 @@ const DatePickerInlineComponent: React.FC<DatePickerInlineComponentProps> = ({
8181
className={IsSelected(type, filters, [date]) ? "selected" : undefined}
8282
data-todotxt-attribute={type}
8383
>
84-
<button tabIndex={-1}>
85-
<Badge variant="dot" invisible={mustNotify}>
84+
<button tabIndex={-1}>
85+
<Badge
86+
variant="dot"
87+
invisible={mustNotify}
88+
className={!mustNotify ? "notify" : undefined}
89+
>
8690
<Chip
8791
onClick={(event) => {
8892
event.stopPropagation();

0 commit comments

Comments
 (0)