Commit 931a27c 1 parent 74e6e76 commit 931a27c Copy full SHA for 931a27c
File tree 2 files changed +2
-3
lines changed
dqops/src/main/frontend/src
components/Connection/ConnectionView
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -20,8 +20,7 @@ export default function ConnectionTables() {
20
20
const [ filters , setFilters ] = useState < any > ( {
21
21
page : 1 ,
22
22
pageSize : 50 ,
23
- checkType :
24
- checkTypes == CheckTypes . SOURCES ? CheckTypes . MONITORING : checkTypes
23
+ checkType : checkTypes == CheckTypes . SOURCES ? undefined : checkTypes
25
24
} ) ;
26
25
const [ table , setTable ] = useState < string > ( ) ;
27
26
const [ schema , setSchema ] = useState < string > ( ) ;
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ export const SchemaTables = () => {
56
56
filters . page ,
57
57
filters . pageSize ,
58
58
filter ,
59
- checkTypes === CheckTypes . SOURCES ? CheckTypes . MONITORING : checkTypes
59
+ checkTypes === CheckTypes . SOURCES ? undefined : checkTypes
60
60
) . then ( ( res ) => {
61
61
const arr : TTableWithSchema [ ] = [ ] ;
62
62
res . data . forEach ( ( item ) => {
You can’t perform that action at this time.
0 commit comments