File tree Expand file tree Collapse file tree 1 file changed +12
-14
lines changed
apps/bulk-edit/src/locations/Page/components Expand file tree Collapse file tree 1 file changed +12
-14
lines changed Original file line number Diff line number Diff line change @@ -23,21 +23,19 @@ export const TableHeader: React.FC<TableHeaderProps> = ({
2323 return (
2424 < Table . Head style = { styles . tableHead } >
2525 < Table . Row style = { styles . stickyTableRow } >
26- < Box style = { styles . stickyMainColumnsOrFields } >
27- { fields . length > 0 && (
28- < Table . Cell as = "th" key = { DISPLAY_NAME_COLUMN } style = { styles . tableHeader } >
29- Display name
30- </ Table . Cell >
31- ) }
32- < Table . Cell as = "th" key = { ENTRY_STATUS_COLUMN } style = { styles . tableHeader } >
33- < Flex gap = "spacingXs" alignItems = "center" justifyContent = "flex-start" >
34- Status
35- < Tooltip content = "Bulk editing is not supported for Status" placement = "top" >
36- < QuestionIcon size = { 16 } aria-label = "Bulk editing not supported for Status" />
37- </ Tooltip >
38- </ Flex >
26+ { fields . length > 0 && (
27+ < Table . Cell as = "th" key = { DISPLAY_NAME_COLUMN } style = { styles . stickyTableHeader } >
28+ Display name
3929 </ Table . Cell >
40- </ Box >
30+ ) }
31+ < Table . Cell as = "th" key = { ENTRY_STATUS_COLUMN } style = { styles . tableHeader } >
32+ < Flex gap = "spacingXs" alignItems = "center" justifyContent = "flex-start" >
33+ Status
34+ < Tooltip content = "Bulk editing is not supported for Status" placement = "top" >
35+ < QuestionIcon size = { 16 } aria-label = "Bulk editing not supported for Status" />
36+ </ Tooltip >
37+ </ Flex >
38+ </ Table . Cell >
4139 { fields . map ( ( field ) => {
4240 const isAllowed = isCheckboxAllowed ( field ) ;
4341 const isDisabled = checkboxesDisabled [ field . uniqueId ] ;
You can’t perform that action at this time.
0 commit comments