File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
opencti-platform/opencti-front/src/components/dataGrid/components Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,11 @@ const useStyles = makeStyles<MuiTheme, { column: DataTableColumn }>((theme) => c
3333 visibility : 'visible' ,
3434 } ,
3535 } ,
36+ textTransform : 'lowercase' ,
37+ } ,
38+ title : { '&::first-letter' : {
39+ textTransform : 'uppercase' ,
40+ } ,
3641 } ,
3742 label : {
3843 paddingLeft : theme . spacing ( 1 ) ,
@@ -108,7 +113,7 @@ const DataTableHeader: FunctionComponent<DataTableHeaderProps> = ({
108113 >
109114 < div className = { classes . label } onClick = { throttleSortColumn } >
110115 < Tooltip title = { t_i18n ( column . label ) } >
111- < span > { t_i18n ( column . label ) . toUpperCase ( ) } </ span >
116+ < span className = { classes . title } > { t_i18n ( column . label ) } </ span >
112117 </ Tooltip >
113118 { sortBy && ( orderAsc ? < ArrowDropUp /> : < ArrowDropDown /> ) }
114119 </ div >
You can’t perform that action at this time.
0 commit comments