Skip to content

Commit c179219

Browse files
committed
Combine button columns
1 parent cae2398 commit c179219

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/components/SearchResultsTable.tsx

+2-5
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ function Row({
120120
}} // opens/closes the card by clicking anywhere on the row
121121
className="cursor-pointer"
122122
>
123-
<TableCell className="border-b-0 pr-0">
123+
<TableCell className="border-b-0 flex gap-1">
124124
<Tooltip
125125
title={open ? 'Minimize Result' : 'Expand Result'}
126126
placement="top"
@@ -133,8 +133,6 @@ function Row({
133133
<KeyboardArrowIcon />
134134
</IconButton>
135135
</Tooltip>
136-
</TableCell>
137-
<TableCell className="border-b-0">
138136
<Tooltip title="Open professor profile" placement="top">
139137
<IconButton
140138
aria-label="open professor profile"
@@ -361,8 +359,7 @@ const SearchResultsTable = ({
361359
<Table stickyHeader aria-label="collapsible table">
362360
<TableHead>
363361
<TableRow>
364-
<TableCell />
365-
<TableCell>Profile</TableCell>
362+
<TableCell>Actions</TableCell>
366363
<TableCell>
367364
<Tooltip
368365
title="Average GPA Across Course Sections"

0 commit comments

Comments
 (0)