Skip to content

Commit ad814c0

Browse files
committed
Refactor AppRunHistoryTimeline component to use Button component for "Deleted App" and "Playground" labels
1 parent 26bf00d commit ad814c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llmstack/client/src/components/apps/AppRunHistoryTimeline.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -328,10 +328,10 @@ export function AppRunHistoryTimeline(props) {
328328
</Button>
329329
);
330330
} else {
331-
return "Deleted App";
331+
return <Button sx={{ textTransform: "none" }}>Deleted App</Button>;
332332
}
333333
}
334-
return "Playground";
334+
return <Button sx={{ textTransform: "none" }}>Playground</Button>;
335335
} else if (column.id === "type") {
336336
return (
337337
<Tooltip title={row.app_uuid !== null ? "App" : "Endpoint"}>

0 commit comments

Comments
 (0)