Skip to content

chore: upgrade to storybook 9 #18983

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 22 commits into from
Aug 8, 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
Next Next commit
Merge branch 'main' into lilac/storybook-9
  • Loading branch information
aslilac committed Jul 28, 2025
commit efe6e06599d72f44b0e70fe68f7553313ecc2a85
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import Link from "@mui/material/Link";
import type { AuditLog } from "api/typesGenerated";
import { type FC, useMemo } from "react";
import { Link as RouterLink } from "react-router";
import { systemBuildReasons } from "utils/workspace";

interface BuildAuditDescriptionProps {
auditLog: AuditLog;
Expand All @@ -14,7 +15,7 @@ export const BuildAuditDescription: FC<BuildAuditDescriptionProps> = ({
// workspaces can be started/stopped/deleted by a user, or kicked off automatically by Coder
const user =
auditLog.additional_fields?.build_reason &&
systemBuildReasons.includes(auditLog.additional_fields?.build_reason)
systemBuildReasons.includes(auditLog.additional_fields?.build_reason)
? "Coder automatically"
: auditLog.user
? auditLog.user.username.trim()
Expand Down
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.