8000 chore: apply design changes to the admin settings menu dropdown by jaaydenh · Pull Request #15947 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

chore: apply design changes to the admin settings menu dropdown #15947

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 6 commits into from
Dec 20, 2024
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
Next Next commit
fix: test
  • Loading branch information
jaaydenh committed Dec 20, 2024
commit dcd3e7991ef4380a201561de62803d846511b94a
6 changes: 3 additions & 3 deletions site/src/modules/dashboard/Navbar/NavbarView.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const ForAdmin: Story = {
play: async ({ canvasElement }) => {
const canvas = within(canvasElement);
await userEvent.click(
canvas.getByRole("button", { name: "Administration" }),
canvas.getByRole("button", { name: "Admin settings" }),
);
},
};
Expand All @@ -44,7 +44,7 @@ export const ForAuditor: Story = {
play: async ({ canvasElement }) => {
const canvas = within(canvasElement);
await userEvent.click(
canvas.getByRole("button", { name: "Administration" }),
canvas.getByRole("button", { name: "Admin settings" }),
);
},
};
Expand All @@ -61,7 +61,7 @@ export const ForOrgAdmin: Story = {
play: async ({ canvasElement }) => {
const canvas = within(canvasElement);
await userEvent.click(
canvas.getByRole("button", { name: "Administration" }),
canvas.getByRole("button", { name: "Admin settings" }),
);
},
};
Expand Down
Loading
0