Skip to content

Commit e3a2cbe

Browse files
author
himaniraghav3
committed
bot review fixes
1 parent d09c17b commit e3a2cbe

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/apps/copilots/src/pages/copilot-opportunity-list/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const tableColumns: TableColumn<CopilotOpportunity>[] = [
2222
label: 'Title',
2323
propertyName: 'projectName',
2424
renderer: (copilotOpportunity: CopilotOpportunity) => (
25-
<div>
25+
<div className={styles.title}>
2626
{copilotOpportunity.projectName}
2727
</div>
2828
),

src/apps/copilots/src/pages/copilot-opportunity-list/styles.module.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
.skillsContainer {
44
display: flex;
55
flex-wrap: wrap;
6-
overflow-x: auto;
7-
overflow-y: hidden;
6+
overflow: auto;
7+
max-width: 300px;
88
gap: 8px;
99
}
1010

src/libs/ui/lib/components/table/Table.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ const Table: <T extends { [propertyName: string]: any }>(props: TableProps<T>) =
105105
const col = props.columns.find(c => c.propertyName === fieldName)
106106

107107
// if sortable is false, we return
108-
if (!col?.isSortable === false) return
108+
if (col?.isSortable === false) return
109109

110110
// if we don't have anything to sort by, we shouldn't be here
111111
if (!sort && !props.removeDefaultSort) {

0 commit comments

Comments
 (0)