Skip to content

Commit cd6da9d

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

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
@@ -21,7 +21,7 @@ import {
2121
nanosecondsToMilliseconds,
2222
tryCatch,
2323
} from "@trigger.dev/core/v3";
24-
import type { $Enums, RuntimeEnvironmentType } from "@trigger.dev/database";
24+
import type { RuntimeEnvironmentType } from "@trigger.dev/database";
2525
import { motion } from "framer-motion";
2626
import React, { useCallback, useEffect, useRef, useState } from "react";
2727
import { useHotkeys } from "react-hotkeys-hook";

0 commit comments

Comments
 (0)