diff --git a/zeppelin-web/src/app/tabledata/advanced-transformation-setting.html b/zeppelin-web/src/app/tabledata/advanced-transformation-setting.html index 195890a182..fa43e3a434 100644 --- a/zeppelin-web/src/app/tabledata/advanced-transformation-setting.html +++ b/zeppelin-web/src/app/tabledata/advanced-transformation-setting.html @@ -213,9 +213,9 @@ limitations under the License.
-| Name | diff --git a/zeppelin-web/src/app/tabledata/advanced-transformation-util.js b/zeppelin-web/src/app/tabledata/advanced-transformation-util.js index 33b3bb7e2b..af96627204 100644 --- a/zeppelin-web/src/app/tabledata/advanced-transformation-util.js +++ b/zeppelin-web/src/app/tabledata/advanced-transformation-util.js @@ -244,7 +244,7 @@ export function initializeConfig(config, spec) { spec.version = currentVersion delete config.chart /** Object: contains current, available chart */ delete config.spec /** Object: axis, parameter spec for each chart */ - config.panel = { columnPanelOpened: true, parameterPanelOpened: true, } + config.panel = { columnPanelOpened: true, parameterPanelOpened: false, } delete config.axisSpecs /** Object: persisted axisSpecs for each chart */ delete config.paramSpecs /** Object: persisted paramSpecs for each chart */ diff --git a/zeppelin-web/src/app/tabledata/advanced-transformation.js b/zeppelin-web/src/app/tabledata/advanced-transformation.js index 47ccddef36..14432e564a 100644 --- a/zeppelin-web/src/app/tabledata/advanced-transformation.js +++ b/zeppelin-web/src/app/tabledata/advanced-transformation.js @@ -145,12 +145,11 @@ class AdvancedTransformation extends Transformation { const code = event.keyCode || event.which; if (code === 13 && isInputWidget(paramSpec)) { self.emitConfig(configInstance) - } else if (code === 13 && event.shiftKey && isTextareaWidget(paramSpec)) { self.emitConfig(configInstance) } - event.stopPropagation(); /** avoid to conflict with paragraph shortcuts */ + event.stopPropagation() /** avoid to conflict with paragraph shortcuts */ }, }
|---|