+
+
{t("incidentLabel")}
+ {visibleIncidentIds.length > 0 ? (
+
+ {visibleIncidentIds.map((incidentId) => (
+
+ {incidentId}
+
+ ))}
+ {hiddenCount > 0 && (
+
+ {t("more", { count: hiddenCount })}
+
+ )}
+
+ ) : (
+
{t("notLinked")}
+ )}
+
+
+
+
+
+ {t("dryRuns")}
+
+
+ {typeof dryRunCount === "number" ? dryRunCount : emptyLabel}
+
+
+
+
+
{t("route")}
+
+ {route}
+
+
+
+
+
{t("writes")}
+
+ {t("writeFlags", {
+ incident: boolLabel(writesIncidentState, emptyLabel),
+ autoRepair: boolLabel(writesAutoRepairResult, emptyLabel),
+ })}
+
+
+
+