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)  ### Questions: * Does the licenses files need update? No * Is there breaking changes for older versions? No * Does this needs documentation? No Author: Jeff Zhang <[email protected]> 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 <[email protected]> Authored: Mon Sep 5 15:44:31 2016 +0800 Committer: Mina Lee <[email protected]> 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',
