22151 multiple files issue

This commit is contained in:
2026-03-27 11:25:41 +00:00
parent 1b145dd90f
commit 2c4d645d56
4 changed files with 37 additions and 37 deletions
+3 -3
View File
@@ -1298,7 +1298,7 @@ export const getProgressBlobs = async (containerName, caseReference) => {
const appealBlobName = blobPathParts[1];
const contentLength = blob.properties.contentLength;
consoleLogger("getProgressBlobs in here", blobPathParts);
//consoleLogger("getProgressBlobs in here", blobPathParts);
blobObj.push({
"name": appealBlobName,
"path": blob.name,
@@ -1480,7 +1480,7 @@ export const getRepsFilesBlobs = async (
const repFileName = blobPathParts[3];
const contentLength = blob.properties.contentLength;
consoleLogger(blob.name);
//consoleLogger(blob.name);
blobObj.push({
"name": repFileName,
@@ -1509,7 +1509,7 @@ export const getRepsFilesBlobs = async (
})
});
}
consoleLogger("blobObj:", blobObj);
//consoleLogger("blobObj:", blobObj);
return blobObj;
};