Skip to content

feat: add provisioner jobs into the UI #16867

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Mar 14, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
FMT
  • Loading branch information
BrunoQuaresma committed Mar 14, 2025
commit ed7359448e5b3ae7adb11318e836e61c75fe3220
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import type { Organization, ProvisionerJob } from "api/typesGenerated";
import { Button } from "components/Button/Button";
import { EmptyState } from "components/EmptyState/EmptyState";
import { Link } from "components/Link/Link";
Expand All @@ -15,7 +16,6 @@ import { Helmet } from "react-helmet-async";
import { docs } from "utils/docs";
import { pageTitle } from "utils/page";
import { JobRow } from "./JobRow";
import type { ProvisionerJob, Organization } from "api/typesGenerated";

type OrganizationProvisionerJobsPageViewProps = {
jobs: ProvisionerJob[] | undefined;
Expand Down
Loading