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 50cddec commit 2296546Copy full SHA for 2296546
visualpython/js/m_apps/PandasOption.js
@@ -82,9 +82,10 @@ define([
82
83
let setDefault = $(this.wrapSelector('#setDefault')).prop('checked');
84
if (setDefault == true) {
85
- Object.keys(this.state).forEach((key) => {
86
- code.push(com_util.formatString("pd.reset_option('display.{0}')", key));
87
- })
+ // Object.keys(this.state).forEach((key) => {
+ // code.push(com_util.formatString("pd.reset_option('display.{0}')", key));
+ // })
88
+ code.push("pd.reset_option('^display')");
89
} else {
90
Object.keys(this.state).forEach((key) => {
91
if (that.state[key] && that.state[key] != '') {
0 commit comments