We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6deb1c2 commit ae01c72Copy full SHA for ae01c72
src/renderer/features/tasks/components/TaskDetail.tsx
@@ -277,6 +277,23 @@ export function TaskDetail({ task: initialTask }: TaskDetailProps) {
277
</DataList.Item>
278
)}
279
280
+ <DataList.Item>
281
+ <DataList.Label>Author</DataList.Label>
282
+ <DataList.Value>
283
+ {task.created_by ? (
284
+ <Text size="2">
285
+ {task.created_by.first_name && task.created_by.last_name
286
+ ? `${task.created_by.first_name} ${task.created_by.last_name}`
287
+ : task.created_by.email}
288
+ </Text>
289
+ ) : (
290
+ <Text size="2" color="gray">
291
+ Unknown
292
293
+ )}
294
+ </DataList.Value>
295
+ </DataList.Item>
296
+
297
<DataList.Item>
298
<DataList.Label>Repository</DataList.Label>
299
<DataList.Value>
0 commit comments