Skip to content

Commit 0dab6d8

Browse files
Left align conversation details in list items
- Add text-left class to conversation content container - Ensures all conversation details (ID, Created date, Status) are left-aligned - Improves visual consistency and readability Co-authored-by: openhands <openhands@all-hands.dev>
1 parent 6d8b735 commit 0dab6d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

example/src/components/ConversationManager.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ export const ConversationManager: React.FC = () => {
467467
}`}
468468
onClick={() => selectConversation(conversation.id)}
469469
>
470-
<div className="flex-1 min-w-0">
470+
<div className="flex-1 min-w-0 text-left">
471471
<div className="text-sm font-mono text-gray-600 dark:text-gray-400 mb-2">
472472
ID: {conversation.id.substring(0, 8)}...
473473
</div>

0 commit comments

Comments
 (0)