mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed the Debugger issue introduced by security fixes.
This commit is contained in:
committed by
Akshay Joshi
parent
40e0175ee5
commit
0cb00c7b4f
@@ -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) {
|
||||
|
||||
@@ -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 };
|
||||
}
|
||||
}
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user