Add blue to low priority tasks (#563)

This commit is contained in:
Chris 2025-11-17 23:01:54 +02:00 committed by GitHub
parent cadb3fc6ee
commit adea13e85d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -33,7 +33,7 @@ const PriorityDropdown: React.FC<PriorityDropdownProps> = ({
value: 'low',
label: t('priority.low', 'Low'),
icon: (
<ArrowDownIcon className="w-5 h-5 text-gray-700 dark:text-gray-300" />
<ArrowDownIcon className="w-5 h-5 text-blue-500 dark:text-blue-400" />
),
},
{

View file

@ -66,7 +66,7 @@ const TaskPriorityIcon: React.FC<TaskPriorityIconProps> = ({
return 'text-yellow-500';
case 'low':
case 0:
return 'text-gray-300';
return 'text-blue-500';
case null:
case undefined:
case '':