File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
src/dashboard/Data/Config Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,6 @@ class Config extends TableView {
58
58
}
59
59
60
60
renderExtras ( ) {
61
- const { currentApp = { } } = this . context ;
62
61
let extras = null ;
63
62
if ( this . state . modalOpen ) {
64
63
extras = (
@@ -69,7 +68,7 @@ class Config extends TableView {
69
68
type = { this . state . modalType }
70
69
value = { this . state . modalValue }
71
70
masterKeyOnly = { this . state . modalMasterKeyOnly }
72
- parseServerVersion = { currentApp . serverInfo && currentApp . serverInfo . parseServerVersion } />
71
+ parseServerVersion = { this . context . serverInfo ? .parseServerVersion } />
73
72
) ;
74
73
} else if ( this . state . showDeleteParameterDialog ) {
75
74
extras = (
@@ -129,7 +128,7 @@ class Config extends TableView {
129
128
}
130
129
openModal ( )
131
130
}
132
-
131
+
133
132
let openDeleteParameterDialog = ( ) => this . setState ( {
134
133
showDeleteParameterDialog : true ,
135
134
modalParam : data . param
You can’t perform that action at this time.
0 commit comments