Add blue to low priority tasks (#563)
This commit is contained in:
parent
cadb3fc6ee
commit
adea13e85d
2 changed files with 2 additions and 2 deletions
|
|
@ -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" />
|
||||
),
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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 '':
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue