Skip to content

Commit 61a8484

Browse files
committed
Fix wf tab loading display
1 parent 6e33ba6 commit 61a8484

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

src/components/events/partials/ModalTabsAndPages/EventDetailsWorkflowDetails.tsx

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,37 @@ const EventDetailsWorkflowDetails = ({
236236
{/* empty view for displaying, while the data is being fetched */}
237237
{isFetching && (
238238
<>
239+
{/* 'Workflow Operation table */}
240+
<div className="obj tbl-container more-info-actions">
241+
<header>
242+
{t("EVENTS.EVENTS.DETAILS.WORKFLOW_DETAILS.LATEST_OPERATION")}
243+
</header>
244+
245+
<table className="main-tbl">
246+
<tbody>
247+
<tr />
248+
</tbody>
249+
</table>
250+
</div>
251+
252+
{/* 'Workflow Errors' table */}
253+
<div className="obj tbl-details">
254+
<header>
255+
{
256+
t(
257+
"EVENTS.EVENTS.DETAILS.ERRORS_AND_WARNINGS.HEADER",
258+
) /* Errors & Warnings */
259+
}
260+
</header>
261+
<div className="obj-container">
262+
<table className="main-tbl vertical-headers">
263+
<tbody>
264+
<tr />
265+
</tbody>
266+
</table>
267+
</div>
268+
</div>
269+
239270
{/* 'Workflow Details' table */}
240271
<div className="obj tbl-details">
241272
<header>

0 commit comments

Comments
 (0)