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 943b7d7 commit 2bc6ccfCopy full SHA for 2bc6ccf
site/src/pages/OrganizationSettingsPage/OrganizationProvisionersPage.tsx
@@ -247,6 +247,17 @@ const JobRow: FC<JobRowProps> = ({ job }) => {
247
{isOpen && (
248
<TableRow>
249
<TableCell colSpan={999} className="p-4 border-t-0">
250
+ {job.status === "failed" && (
251
+ <div
252
+ className={cn([
253
+ "inline-flex items-center gap-2 rounded border border-solid border-boder p-2",
254
+ "text-content-primary bg-surface-secondary mb-4",
255
+ ])}
256
+ >
257
+ <TriangleAlertIcon className="text-content-destructive size-icon-sm p-0.5" />
258
+ <span className="[&:first-letter]:uppercase">{job.error}</span>
259
+ </div>
260
+ )}
261
<div
262
className={cn([
263
"grid grid-cols-[auto_1fr] gap-x-4 items-center",
0 commit comments