File tree Expand file tree Collapse file tree
src/components/RJST/components/Table Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -42,7 +42,10 @@ const SortableItem = <T extends object>({
4242 { ...attributes }
4343 sx = { { transform : CSS . Transform . toString ( transform ) , transition } }
4444 >
45- { analyticsState . featureFlags ?. columnOrdering && (
45+ { ( analyticsState . featureFlags
46+ ? analyticsState . featureFlags . columnOrdering ||
47+ analyticsState . featureFlags . reducedDefaultDeviceColumnsAndReordering
48+ : false ) && (
4649 < ListItemIcon
4750 { ...listeners }
4851 sx = { {
@@ -127,7 +130,8 @@ export const TableActions = <T extends object>({
127130 ! active ||
128131 ! over ||
129132 ! onColumnPreferencesChange ||
130- ! analyticsState . featureFlags ?. columnOrdering
133+ ( ! analyticsState . featureFlags ?. columnOrdering &&
134+ ! analyticsState . featureFlags ?. reducedDefaultDeviceColumnsAndReordering )
131135 ) {
132136 return ;
133137 }
You can’t perform that action at this time.
0 commit comments