File tree 3 files changed +4
-4
lines changed
apps/copilots/src/pages/copilot-opportunity-list
libs/ui/lib/components/table 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ const tableColumns: TableColumn<CopilotOpportunity>[] = [
22
22
label : 'Title' ,
23
23
propertyName : 'projectName' ,
24
24
renderer : ( copilotOpportunity : CopilotOpportunity ) => (
25
- < div >
25
+ < div className = { styles . title } >
26
26
{ copilotOpportunity . projectName }
27
27
</ div >
28
28
) ,
Original file line number Diff line number Diff line change 3
3
.skillsContainer {
4
4
display : flex ;
5
5
flex-wrap : wrap ;
6
- overflow-x : auto ;
7
- overflow-y : hidden ;
6
+ overflow : auto ;
7
+ max-width : 300 px ;
8
8
gap : 8px ;
9
9
}
10
10
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ const Table: <T extends { [propertyName: string]: any }>(props: TableProps<T>) =
105
105
const col = props . columns . find ( c => c . propertyName === fieldName )
106
106
107
107
// if sortable is false, we return
108
- if ( ! col ?. isSortable === false ) return
108
+ if ( col ?. isSortable === false ) return
109
109
110
110
// if we don't have anything to sort by, we shouldn't be here
111
111
if ( ! sort && ! props . removeDefaultSort ) {
You can’t perform that action at this time.
0 commit comments