We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1636984 commit e4dea2bCopy full SHA for e4dea2b
apps/webapp/app/components/logs/LogsTable.tsx
@@ -26,6 +26,7 @@ import {
26
TableRow,
27
type TableVariant,
28
} from "../primitives/Table";
29
+import { RunsIcon } from "~/assets/icons/RunsIcon";
30
31
type LogsTableProps = {
32
logs: LogEntry[];
@@ -185,9 +186,11 @@ export function LogsTable({
185
186
<LinkButton
187
to={runPath}
188
variant="minimal/small"
- TrailingIcon={ArrowTopRightOnSquareIcon}
189
+ TrailingIcon={RunsIcon}
190
+ trailingIconClassName="text-text-bright"
191
+ className="h-[1.375rem] pl-1.5 pr-2"
192
>
- View run
193
+ <span className="text-[0.6875rem] text-text-bright">View run</span>
194
</LinkButton>
195
}
196
/>
0 commit comments