Skip to content

Commit 91b7a4e

Browse files
Merge branch 'master' into hidden-tabs
2 parents 0fbbd9e + be20f47 commit 91b7a4e

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,9 @@
121121
"modulePathIgnorePatterns": [
122122
"./src/plugins/moreButtonPlugin/button/popper",
123123
"./src/__mock__"
124+
],
125+
"coveragePathIgnorePatterns": [
126+
"src/__mock__"
124127
]
125128
},
126129
"sideEffects": false,
File renamed without changes.

src/utils/api/optionManager/optionManager.factory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export default Helper.module(
2626
},
2727
setOption: function (name = missingParamEr('setOption'), value = missingParamEr('setOption')) {
2828
if (['SELECTEDTABID', 'TABS'].indexOf(name.toUpperCase()) >= 0) return this;
29-
if (Object.prototype.hasOwnProperty.call(this._defaultOptions, name)) this.options[name] = value;
29+
this.options[name] = value;
3030
return this;
3131
},
3232
validatePanelComponent: function (tabData) {

0 commit comments

Comments
 (0)