We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6bc22d commit 1a17f93Copy full SHA for 1a17f93
src/com/react-dynamic-tabs/useDynamicTabs/createDefaultOptions.js
@@ -33,7 +33,8 @@ CreateDefaultOptions.prototype._getOptions = function () {
33
if (that.directionsRange.indexOf(value) === -1)
34
throw 'Invalid direction value! it can be eather of "ltr" or "rtl" ';
35
_direction = value;
36
- }
+ },
37
+ enumerable: true
38
},
39
tabComponent: {
40
get() {
@@ -44,7 +45,8 @@ CreateDefaultOptions.prototype._getOptions = function () {
44
45
throw 'tabComponent property must be type of a function.';
46
_options.isCustomTabComponent = fn ? true : false;
47
_tabComponent = fn ? fn : that._DefaulTabInnerComponent;
48
49
50
}
51
});
52
return _options;
0 commit comments