diff --git a/src/Components/Printing/JobStatus.js b/src/Components/Printing/JobStatus.js
index 55f01a581..2759082b0 100644
--- a/src/Components/Printing/JobStatus.js
+++ b/src/Components/Printing/JobStatus.js
@@ -1,13 +1,52 @@
-import React from 'react';
+export default function JobStatus({ id, status, fileName }) {
+ const getStatusConfig = () => {
+ switch (status) {
+ case 'failed':
+ return {
+ color: 'alert-error',
+ icon:
{props.fileName} ({props.id}): {props.status}
+