Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 2 additions & 1 deletion frontend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -910,7 +910,8 @@ avoid linking another checkout's older `node_modules` directory. If TypeScript
reports missing `i18next` or `react-i18next` despite their entries in
`package.json`, install from the current lockfile with `npm ci`, then rerun the
check. Do not remove imports or change source types to work around missing
dependencies
dependencies. This also applies to component tests: reinstall dependencies in
the worktree itself instead of borrowing the main checkout’s `node_modules`

## Branding

Expand Down
8 changes: 8 additions & 0 deletions frontend/src/create/CustomCreate.css
Original file line number Diff line number Diff line change
Expand Up @@ -1209,6 +1209,14 @@
overflow-x: hidden;
overflow-y: auto;
}
.cw-ab-card-face[aria-hidden="true"] {
/* A rotated back face can still intercept wheel scrolling in Chromium */
visibility: hidden;
pointer-events: none;
}
.cw-ab-conversation .deploy-error-message-actions {
justify-content: flex-start;
}
.cw-ab-card-head {
min-height: 54px;
display: flex;
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/create/CustomCreate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3390,6 +3390,7 @@ function DebugComparisonWorkspace({
<section
className="cw-ab-card-face cw-ab-card-front"
aria-hidden={variant.configOpen}
inert={variant.configOpen}
>
<header className="cw-ab-card-head">
<div className="cw-ab-card-title">
Expand Down Expand Up @@ -3527,6 +3528,7 @@ function DebugComparisonWorkspace({
<section
className="cw-ab-card-face cw-ab-card-back"
aria-hidden={!variant.configOpen}
inert={!variant.configOpen}
>
<header className="cw-ab-config-head">
<div>
Expand Down
6 changes: 1 addition & 5 deletions frontend/src/ui/DeploymentErrorMessage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@ import { useTranslation } from "react-i18next";
import { Button, CopyButton } from "@openai/apps-sdk-ui/components/Button";
import {
ArrowRotateCcw,
Check,
Collapse,
Copy,
Expand,
} from "@openai/apps-sdk-ui/components/Icon";

Expand Down Expand Up @@ -83,9 +81,7 @@ export function DeploymentErrorMessage({
pill={false}
title={t("deploymentError.copy")}
aria-label={t("deploymentError.copy")}
>
{({ copied }) => copied ? <Check /> : <Copy />}
</CopyButton>
/>
</div>
</div>
);
Expand Down
Loading