Skip to content

Commit

Permalink
add enum hotfix to dicom connect
Browse files Browse the repository at this point in the history
  • Loading branch information
birm committed Apr 29, 2024
1 parent c187d13 commit bcb25a3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions common/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,12 @@ function getUrlVars() {
deleteProperty: function(target, prop) {
delete state[prop.toLowerCase()];
return true;
},
getOwnPropertyDescriptor(target, prop) {
return { configurable: true, enumerable: true };
},
ownKeys: function(target) {
return Reflect.ownKeys(state)
}
});
}
Expand Down

0 comments on commit bcb25a3

Please sign in to comment.