File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed
src/components/RJST/components/Table Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -42,10 +42,9 @@ const SortableItem = <T extends object>({
4242 { ...attributes }
4343 sx = { { transform : CSS . Transform . toString ( transform ) , transition } }
4444 >
45- { ( analyticsState . featureFlags ?. [ 'reducedDefaultDeviceColumns' ] ?. value ===
46- 'on' ||
45+ { ( analyticsState . featureFlags ?. [ 'column-ordering' ] ?. value === 'on' ||
4746 analyticsState . featureFlags ?. [
48- 'reducedDefaultDeviceColumnsAndReordering '
47+ 'reduced-default-device-columns-and-reordering '
4948 ] ?. value === 'on' ) && (
5049 < ListItemIcon
5150 { ...listeners }
@@ -131,13 +130,10 @@ export const TableActions = <T extends object>({
131130 ! active ||
132131 ! over ||
133132 ! onColumnPreferencesChange ||
134- ( ! (
135- analyticsState . featureFlags ?. [ 'reducedDefaultDeviceColumns' ] ?. value ===
136- 'on'
137- ) &&
133+ ( ! ( analyticsState . featureFlags ?. [ 'column-reordering' ] ?. value === 'on' ) &&
138134 ! (
139135 analyticsState . featureFlags ?. [
140- 'reducedDefaultDeviceColumnsAndReordering '
136+ 'reduced-default-device-columns-and-reordering '
141137 ] ?. value === 'on'
142138 ) )
143139 ) {
You can’t perform that action at this time.
0 commit comments