Skip to content

Commit 3c93c68

Browse files
committed
add PR feedback
1 parent 8687bde commit 3c93c68

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

frontend/javascripts/admin/task/task_create_form_view.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ export function handleTaskCreationResponse(
167167
<Alert
168168
showIcon
169169
type="warning"
170-
title="There were warnings during task creation"
170+
message="There were warnings during task creation"
171171
description={warnings.join("\n")}
172172
/>
173173
</div>
@@ -176,7 +176,7 @@ export function handleTaskCreationResponse(
176176
const failedTasksAsString = failedTasks.join("");
177177
const successfulTasksContent =
178178
successfulTasks.length <= maxDisplayedTasksCount ? (
179-
<Typography.Paragraph code>
179+
<Typography.Paragraph>
180180
<pre>
181181
taskId,filename,position
182182
<br />
@@ -188,7 +188,7 @@ export function handleTaskCreationResponse(
188188
);
189189
const failedTasksContent =
190190
failedTasks.length <= maxDisplayedTasksCount ? (
191-
<Typography.Paragraph code copyable>
191+
<Typography.Paragraph>
192192
<pre>{failedTasksAsString}</pre>
193193
</Typography.Paragraph>
194194
) : (

0 commit comments

Comments
 (0)