You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by mi...@apache.org on 2016/09/05 12:04:51 UTC

zeppelin git commit: HotFix for ZEPPELIN-1374

Repository: zeppelin
Updated Branches:
  refs/heads/master 6c6097a55 -> 9eeaf49f0


HotFix for ZEPPELIN-1374

### What is this PR for?
This is for fixing bug introduced in #1365. I may introduce this when rebasing the PR.

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

### Todos
* [ ] - Task

### What is the Jira issue?
* https://issues.apache.org/jira/browse/ZEPPELIN-1374]

### Screenshots (if appropriate)
![image](https://cloud.githubusercontent.com/assets/164491/18240526/00996468-737f-11e6-91db-276c73bf70cf.png)

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

Author: Jeff Zhang <zj...@apache.org>

Closes #1403 from zjffdu/HotFix_ZEPPELIN-1374 and squashes the following commits:

032bafa [Jeff Zhang] HotFix for ZEPPELIN-1374


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

Branch: refs/heads/master
Commit: 9eeaf49f07b50a34e5e35b5cac232c26ee86fa7e
Parents: 6c6097a
Author: Jeff Zhang <zj...@apache.org>
Authored: Mon Sep 5 15:44:31 2016 +0800
Committer: Mina Lee <mi...@apache.org>
Committed: Mon Sep 5 14:04:37 2016 +0200

----------------------------------------------------------------------
 zeppelin-web/src/app/interpreter/interpreter.controller.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/9eeaf49f/zeppelin-web/src/app/interpreter/interpreter.controller.js
----------------------------------------------------------------------
diff --git a/zeppelin-web/src/app/interpreter/interpreter.controller.js b/zeppelin-web/src/app/interpreter/interpreter.controller.js
index 60cb0f7..378dce4 100644
--- a/zeppelin-web/src/app/interpreter/interpreter.controller.js
+++ b/zeppelin-web/src/app/interpreter/interpreter.controller.js
@@ -325,7 +325,7 @@ angular.module('zeppelinWebApp').controller('InterpreterCtrl',
         return;
       }
 
-      if (!$scope.newInterpreterSetting.name.indexOf('.') >= 0) {
+      if ($scope.newInterpreterSetting.name.indexOf('.') >= 0) {
         BootstrapDialog.alert({
           closable: true,
           title: 'Add interpreter',