File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ export const NotificationRow: FC<INotificationRow> = ({
109109 const repoAvatarUrl = notification . repository . owner . avatar_url ;
110110 const repoSlug = notification . repository . full_name ;
111111
112- const groupByRepository = settings . groupBy === 'REPOSITORY ' ;
112+ const groupByDate = settings . groupBy === 'DATE ' ;
113113
114114 return (
115115 < div
@@ -126,7 +126,7 @@ export const NotificationRow: FC<INotificationRow> = ({
126126 title = { notificationTitle }
127127 >
128128 < NotificationIcon
129- size = { groupByRepository ? 16 : 20 }
129+ size = { groupByDate ? 20 : 16 }
130130 aria-label = { notification . subject . type }
131131 />
132132 </ div >
@@ -135,7 +135,7 @@ export const NotificationRow: FC<INotificationRow> = ({
135135 className = "flex-1 overflow-hidden overflow-ellipsis whitespace-nowrap"
136136 onClick = { ( ) => handleNotification ( ) }
137137 >
138- { ! groupByRepository && (
138+ { groupByDate && (
139139 < div
140140 className = "mb-1 flex items-center gap-1 cursor-pointer truncate text-sm font-medium "
141141 title = { repoSlug }
You can’t perform that action at this time.
0 commit comments