We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b6c3de commit 9274ee7Copy full SHA for 9274ee7
web-app/src/screens/Console/Buckets/ListBuckets/Objects/ListObjects/InspectObject.tsx
@@ -67,7 +67,7 @@ const InspectObject = ({
67
const volume = encodeURLString(volumeName);
68
69
let basename = document.baseURI.replace(window.location.origin, "");
70
- const urlOfInspectApi = `${basename}/api/v1/admin/inspect?volume=${volume}&file=${file}&encrypt=${isEncrypt}`;
+ const urlOfInspectApi = `${window.location.origin}${basename}/api/v1/admin/inspect?volume=${volume}&file=${file}&encrypt=${isEncrypt}`;
71
72
makeRequest(urlOfInspectApi)
73
.then(async (res) => {
0 commit comments