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 6abfded commit 161bc8dCopy full SHA for 161bc8d
src/containers/Tenant/Acl/Acl.js
@@ -13,6 +13,12 @@ const b = cn('kv-acl');
13
14
const COLUMN_WIDTH = 140;
15
16
+const TABLE_SETTINGS = {
17
+ ...DEFAULT_TABLE_SETTINGS,
18
+ dynamicRender: false,
19
+ stickyTop: 36,
20
+};
21
+
22
class Acl extends React.Component {
23
static propTypes = {
24
error: PropTypes.string,
@@ -81,7 +87,7 @@ class Acl extends React.Component {
81
87
<DataTable
82
88
columns={this.COLUMNS}
83
89
data={acl}
84
- settings={{...DEFAULT_TABLE_SETTINGS, stickyTop: 36}}
90
+ settings={TABLE_SETTINGS}
85
91
/>
86
92
);
93
};
0 commit comments