Skip to content

Commit e4dea2b

Browse files
committed
Improved link to run button style on a row
1 parent 1636984 commit e4dea2b

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

apps/webapp/app/components/logs/LogsTable.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ import {
2626
TableRow,
2727
type TableVariant,
2828
} from "../primitives/Table";
29+
import { RunsIcon } from "~/assets/icons/RunsIcon";
2930

3031
type LogsTableProps = {
3132
logs: LogEntry[];
@@ -185,9 +186,11 @@ export function LogsTable({
185186
<LinkButton
186187
to={runPath}
187188
variant="minimal/small"
188-
TrailingIcon={ArrowTopRightOnSquareIcon}
189+
TrailingIcon={RunsIcon}
190+
trailingIconClassName="text-text-bright"
191+
className="h-[1.375rem] pl-1.5 pr-2"
189192
>
190-
View run
193+
<span className="text-[0.6875rem] text-text-bright">View run</span>
191194
</LinkButton>
192195
}
193196
/>

0 commit comments

Comments
 (0)