Skip to content

Commit

Permalink
small fixes (#2751)
Browse files Browse the repository at this point in the history
  • Loading branch information
colegottdank authored Oct 9, 2024
1 parent ef3b2a5 commit 6494f39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,6 @@ export function ExperimentTable({
overflow: "hidden",
textOverflow: "ellipsis",
},
// Add cellClass and headerClass to apply borders
cellClass: "border-r border-[#E2E8F0]",
headerClass: "border-r border-[#E2E8F0]",
}),
Expand Down Expand Up @@ -597,6 +596,7 @@ export function ExperimentTable({
cellStyle: {
display: "flex",
alignItems: "center",
overflow: "hidden",
justifyContent: "start",
whiteSpace: wrapText ? "normal" : "nowrap",
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const HypothesisCellRenderer: React.FC<any> = (params) => {
return (
<div className="w-full h-full whitespace-pre-wrap flex flex-row items-center space-x-2 pl-4">
<span className="animate-ping inline-flex rounded-full bg-green-700 h-2 w-2"></span>
<div className="italic">Running...</div>
<div className="italic">Generating...</div>
</div>
);
}
Expand Down

0 comments on commit 6494f39

Please sign in to comment.