Fixed the Debugger issue introduced by security fixes.

This commit is contained in:
Nikhil Mohite
2022-09-14 15:15:52 +05:30
committed by Akshay Joshi
parent 40e0175ee5
commit 0cb00c7b4f
3 changed files with 5 additions and 5 deletions

View File

@@ -351,7 +351,7 @@ export default function DebuggerComponent({ pgAdmin, selectedNodeInfo, panel, ev
api({
url: baseUrl,
method: 'GET',
method: 'POST',
})
.then(function (res) {
if (res.data.data.status) {
@@ -368,7 +368,7 @@ export default function DebuggerComponent({ pgAdmin, selectedNodeInfo, panel, ev
api({
url: baseUrl,
method: 'GET',
method: 'POST',
})
.then(function (res) {
if (res.data.data.status) {
@@ -608,7 +608,7 @@ export default function DebuggerComponent({ pgAdmin, selectedNodeInfo, panel, ev
api({
url: base_url,
method: 'GET',
method: 'POST',
})
.then(function () {
if (params.directDebugger.debug_type) {

View File

@@ -275,7 +275,7 @@ class UserManagementSchema extends BaseUISchema {
{
id: 'refreshBrowserTree', visible: false, type: 'boolean',
deps: ['userManagement'], depChange: ()=> {
return { refreshBrowserTree: this.changeOwnership }
return { refreshBrowserTree: this.changeOwnership };
}
}
];