Skip to content

Commit

Permalink
Changing name of the component once again
Browse files Browse the repository at this point in the history
  • Loading branch information
lotif committed Jul 15, 2024
1 parent 200cae5 commit c6a7573
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions florist/app/jobs/details/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,13 +104,13 @@ export function JobDetailsBody(): ReactElement {
</div>
</div>

<JobDetailsTableHeader
<JobDetailsTable
Component={JobDetailsServerConfigTable}
title="Server Configuration"
data={job.server_config}
/>

<JobDetailsTableHeader
<JobDetailsTable
Component={JobDetailsClientsInfoTable}
title="Clients Configuration"
data={job.clients_info}
Expand Down Expand Up @@ -161,7 +161,7 @@ export function JobDetailsStatus({ status }: { status: string }): ReactElement {
);
}

export function JobDetailsTableHeader({ Component, title, data }): ReactElement {
export function JobDetailsTable({ Component, title, data }): ReactElement {
return (
<div className="row">
<div className="col-12">
Expand Down

0 comments on commit c6a7573

Please sign in to comment.