Skip to content

feat(site): display xray scan result in the agent #11955

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 3 commits into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
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
Fix storybook
  • Loading branch information
BrunoQuaresma committed Jan 31, 2024
commit c9c017fc5bc50f478e1ad25ea68d3a4b6d58d1a8
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ import type { Meta, StoryObj } from "@storybook/react";
const meta: Meta<typeof VersionsTable> = {
title: "pages/TemplatePage/VersionsTable",
component: VersionsTable,
args: {
onPromoteClick: () => {},
onArchiveClick: () => {},
},
};

export default meta;
Expand Down
2 changes: 2 additions & 0 deletions site/src/pages/UsersPage/ResetPasswordDialog.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ const Example: Story = {
open: true,
user: MockUser,
newPassword: "somerandomstringhere",
onConfirm: () => {},
onClose: () => {},
},
};

Expand Down