+
+ Plan: {run.planId}
+
+
+ Progress: {progress.completed}/{progress.total} steps ({progress.percentage}%)
+
+
+ Created: {formatDate(run.createdAt)}
+
+
+ Updated: {formatDate(run.updatedAt)}
+
+ {plan?.version && (
+
+ Version: {plan.version}
+
+ )}
+ {plan && Object.keys(plan.tags).length > 0 && (
+
+ Tags:{' '}
+ {Object.entries(plan.tags).map(([key, value]) => (
+
+ {key}: {value}
+
+ ))}
)}