We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f80dbb commit 03a8723Copy full SHA for 03a8723
admin/src/page/settings/filter.js
@@ -42,13 +42,15 @@ class Filter extends React.Component {
42
comparison: false,
43
},
44
],
45
- action: {
46
- server: false,
47
- path: false,
48
- profile: false,
49
- tag: false,
50
- type: false,
51
- },
+ action: [
+ {
+ server: false,
+ path: false,
+ profile: false,
+ tag: false,
+ type: false,
52
+ },
53
+ ],
54
collapse: false,
55
});
56
this.setState({
@@ -202,6 +204,7 @@ class Filter extends React.Component {
202
204
203
205
if (target.dataset.type) {
206
let current = this.state[target.dataset.type];
207
+ console.log(current, target.dataset.type);
208
if (target.dataset.row === "action") {
209
let actionRow = target.dataset.actionRow;
210
console.log(target.dataset);
0 commit comments