We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e03e75b commit 95f298fCopy full SHA for 95f298f
src/components/ColumnsConfiguration/ColumnsConfiguration.react.js
@@ -84,7 +84,13 @@ export default class ColumnsConfiguration extends React.Component {
84
name,
85
visible
86
};
87
- handleColumnsOrder(updatedOrder, visible);
+ let shouldReload = visible;
88
+ // these fields are always cached as they are never excluded from server
89
+ // therefore no need to make another request.
90
+ if (name === 'objectId' || name === 'createdAt' || name === 'updatedAt' || name === 'ACL') {
91
+ shouldReload = false;
92
+ }
93
+ handleColumnsOrder(updatedOrder, shouldReload);
94
}}
95
handleColumnDragDrop={handleColumnDragDrop} />
96
})}
0 commit comments