You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by mo...@apache.org on 2016/11/29 16:06:26 UTC

zeppelin git commit: [ZEPPELIN-1013] Don't run paragraph on selectbox change

Repository: zeppelin
Updated Branches:
  refs/heads/master 07fbc6ec8 -> 6a2a341b0


[ZEPPELIN-1013] Don't run paragraph on selectbox change

### What is this PR for?
Enabling to change values of multiple selectboxes witout running the paragraph

### What type of PR is it?
[Bug Fix]

### Todos
No

### What is the Jira issue?
[ZEPPELIN-1013]

### How should this be tested?
1. Create a paragraph with  a selectbox via z.select(...)
2. Select any value other than currently selected
Actual result:   value changes and paragraph gets executed
Expected result: value changes

### Screenshots (if appropriate)

### Questions:
* Does the licenses files need update?
No
* Is there breaking changes for older versions?
No
* Does this needs documentation?
No

Author: Mleekko <ml...@gmail.com>

Closes #1647 from Mleekko/master and squashes the following commits:

13b65a2 [Mleekko] [ZEPPELIN-1013] Don't run paragraph on selectbox change


Project: http://git-wip-us.apache.org/repos/asf/zeppelin/repo
Commit: http://git-wip-us.apache.org/repos/asf/zeppelin/commit/6a2a341b
Tree: http://git-wip-us.apache.org/repos/asf/zeppelin/tree/6a2a341b
Diff: http://git-wip-us.apache.org/repos/asf/zeppelin/diff/6a2a341b

Branch: refs/heads/master
Commit: 6a2a341b0c05a2a46e9bf0c96b869d483ec4977f
Parents: 07fbc6e
Author: Mleekko <ml...@gmail.com>
Authored: Wed Nov 16 19:13:17 2016 +0200
Committer: Lee moon soo <mo...@apache.org>
Committed: Tue Nov 29 08:06:22 2016 -0800

----------------------------------------------------------------------
 .../app/notebook/paragraph/paragraph-parameterizedQueryForm.html    | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/6a2a341b/zeppelin-web/src/app/notebook/paragraph/paragraph-parameterizedQueryForm.html
----------------------------------------------------------------------
diff --git a/zeppelin-web/src/app/notebook/paragraph/paragraph-parameterizedQueryForm.html b/zeppelin-web/src/app/notebook/paragraph/paragraph-parameterizedQueryForm.html
index 000b4fe..6108054 100644
--- a/zeppelin-web/src/app/notebook/paragraph/paragraph-parameterizedQueryForm.html
+++ b/zeppelin-web/src/app/notebook/paragraph/paragraph-parameterizedQueryForm.html
@@ -29,7 +29,6 @@ limitations under the License.
 
       <select class="form-control input-sm"
              ng-if="paragraph.settings.forms[formulaire.name].options && paragraph.settings.forms[formulaire.name].type != 'checkbox'"
-             ng-change="runParagraph(getEditorValue())"
              ng-model="paragraph.settings.params[formulaire.name]"
              ng-class="{'disable': paragraph.status == 'RUNNING' || paragraph.status == 'PENDING' }"
              name="{{formulaire.name}}"