diff --git a/design/ui_kits/console/ArchiveSection.jsx b/design/ui_kits/console/ArchiveSection.jsx
index 8305004..b644475 100644
--- a/design/ui_kits/console/ArchiveSection.jsx
+++ b/design/ui_kits/console/ArchiveSection.jsx
@@ -126,7 +126,7 @@ function ArchiveModal({ item, t, onClose }) {
const d = item.detail || {};
const label = (text) =>
{text}
;
const doc = (text) => (
- {text}
+
);
const kvGrid = { fontSize: 12, display: 'grid', gridTemplateColumns: 'auto 1fr', gap: '3px 12px', margin: 0 };
return (
diff --git a/design/ui_kits/console/GateSection.jsx b/design/ui_kits/console/GateSection.jsx
index 08aaf48..5842a7a 100644
--- a/design/ui_kits/console/GateSection.jsx
+++ b/design/ui_kits/console/GateSection.jsx
@@ -181,7 +181,6 @@ function GatePreview({ item, t, onDecide, onClose }) {
);
};
const secLabel = (txt) => {txt}
;
- const reportBox = (txt) => {txt}
;
return (
@@ -291,7 +290,7 @@ function GateSection({ approvals, onDecide, taskOps, onTakeover, t }) {
const isFolded = folded.has(a.id);
return (
-
toggleFold(a.id)}
foldTitle={isFolded ? t.gateExpand : t.gateCollapse}
onHeaderDoubleClick={a.gate === 'attention' ? undefined : () => setPreview(a)} headerTitle={a.gate === 'attention' ? null : t.gateDblTip}
@@ -320,15 +319,24 @@ function GateSection({ approvals, onDecide, taskOps, onTakeover, t }) {
}>
{a.gate === 'attention' ? (
- ) : rejecting === a.id ? (
-
-
-
-
- ) : null}
+ ) : (
+
+ {a.doc ? (
+
+
+
+ ) : null}
+ {rejecting === a.id ? (
+
+
+
+
+ ) : null}
+
+ )}
);