diff --git a/frontend/components/Shared/PriorityDropdown.tsx b/frontend/components/Shared/PriorityDropdown.tsx index 8a4d26a..2c3da8e 100644 --- a/frontend/components/Shared/PriorityDropdown.tsx +++ b/frontend/components/Shared/PriorityDropdown.tsx @@ -160,11 +160,12 @@ const PriorityDropdown: React.FC = ({ onClick={() => handleSelect(priority.value as PriorityType) } - className="flex items-center justify-center px-4 py-2 text-sm text-gray-900 dark:text-gray-100 hover:bg-gray-100 dark:hover:bg-gray-600 w-full first:rounded-t-md last:rounded-b-md" + className="flex items-center space-x-2 px-4 py-2 text-sm text-gray-900 dark:text-gray-100 hover:bg-gray-100 dark:hover:bg-gray-600 w-full first:rounded-t-md last:rounded-b-md" data-testid={`priority-option-${priority.value || 'none'}`} title={priority.label} > {priority.icon} + {priority.label} ))} , diff --git a/frontend/components/Tasks.tsx b/frontend/components/Tasks.tsx index f9fcf7d..db69184 100644 --- a/frontend/components/Tasks.tsx +++ b/frontend/components/Tasks.tsx @@ -536,7 +536,7 @@ const Tasks: React.FC = () => { return (