Skip to content

Commit

Permalink
Merge branch 'dandi-files-or-folders' of https://github.com/Neurodata…
Browse files Browse the repository at this point in the history
…WithoutBorders/nwb-guide into dandi-files-or-folders
  • Loading branch information
garrettmflynn committed Sep 28, 2023
2 parents 6363a38 + 3371b7f commit 17cb82e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/src/progress/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function decode(message) {

function drill(o, callback) {
if (o && typeof o === "object") {
const copy = Array.isArray(o) ? [...o] : { ...o } ;
const copy = Array.isArray(o) ? [...o] : { ...o };
for (let k in copy) copy[k] = drill(copy[k], callback);
return copy;
} else return callback(o);
Expand Down

0 comments on commit 17cb82e

Please sign in to comment.