@@ -2789,9 +2810,16 @@ function CallbackReplyEvidencePanel({
{t("subtitle")}
-
- {t("total", { count: total })}
-
+
+ {cacheLabel ? (
+
+ {cacheLabel}
+
+ ) : null}
+
+ {t("total", { count: total })}
+
+
@@ -2800,11 +2828,7 @@ function CallbackReplyEvidencePanel({
{t("error", { error })}
- ) : events.length === 0 ? (
-
- {t("empty")}
-
- ) : (
+ ) : events.length > 0 ? (
{events.slice(0, 6).map((event) => {
const status = normalizeCallbackReplyEventStatus(event.status);
@@ -2882,6 +2906,14 @@ function CallbackReplyEvidencePanel({
);
})}
+ ) : loading ? (
+
+ {t("loading")}
+
+ ) : (
+
+ {t("empty")}
+
)}
);
@@ -3302,6 +3334,8 @@ export default function RunsPage() {
const [callbackEvents, setCallbackEvents] = useState