Skip to content

Commit

Permalink
Bump @babel/core from 7.12.10 to 7.13.10 (#6807)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot-preview[bot] committed Mar 11, 2021
1 parent c8b9c96 commit 035f235
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 196 deletions.
9 changes: 8 additions & 1 deletion app/assets/javascripts/active_admin/base.js
Expand Up @@ -471,7 +471,14 @@
function _inheritsLoose(subClass, superClass) {
subClass.prototype = Object.create(superClass.prototype);
subClass.prototype.constructor = subClass;
subClass.__proto__ = superClass;
_setPrototypeOf(subClass, superClass);
}
function _setPrototypeOf(o, p) {
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
o.__proto__ = p;
return o;
};
return _setPrototypeOf(o, p);
}
var TableCheckboxToggler = function(_CheckboxToggler) {
_inheritsLoose(TableCheckboxToggler, _CheckboxToggler);
Expand Down

0 comments on commit 035f235

Please sign in to comment.