Skip to content

Commit cdf108f

Browse files
committed
feat(webapp): Small UI tweaks for task runs
Fix text colors, incorporate PR feedback
1 parent 6a4a61e commit cdf108f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

apps/webapp/app/components/primitives/Buttons.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ export const NavLinkButton = ({ to, className, target, ...props }: NavLinkPropsT
408408
return (
409409
<NavLink
410410
to={to}
411-
className={cn("group/button outline-none display-block", props.fullWidth ? "w-full" : "")}
411+
className={cn("group/button outline-none block", props.fullWidth ? "w-full" : "")}
412412
target={target}
413413
>
414414
{({ isActive, isPending }) => (

apps/webapp/app/components/primitives/CopyableText.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export function CopyableText({
8181
className
8282
)}
8383
>
84-
<span className="text-text-white">{value}</span>
84+
<span>{value}</span>
8585
</Button>
8686
}
8787
content={copied ? "Copied" : "Click to copy"}

apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.runs.$runParam/route.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ export default function Page() {
276276
isCompleted: run.completedAt !== null,
277277
});
278278
const { value } = useSearchParams();
279-
const tableState = decodeURIComponent(value("tableState") ?? "");
279+
const tableState = value("tableState");
280280
const tableStateSearchParams = new URLSearchParams(tableState);
281281
const filters = getRunFiltersFromSearchParams(tableStateSearchParams);
282282

0 commit comments

Comments
 (0)