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/25 07:12:29 UTC

zeppelin git commit: [MINOR] Remove spaces between intepreter group and name

Repository: zeppelin
Updated Branches:
  refs/heads/master c2fc3f5bd -> 3021d4641


[MINOR] Remove spaces between intepreter group and name

### What is this PR for?
#1395 changed alignment of html tag and it caused to make space between interpreter group and name.

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

### Screenshots (if appropriate)
**Before**
<img width="436" alt="screen shot 2016-09-22 at 11 31 35 am" src="https://cloud.githubusercontent.com/assets/8503346/18743269/7fa34b16-80b8-11e6-979a-194e7f6bef8f.png">

**After**
<img width="411" alt="screen shot 2016-09-22 at 11 32 02 am" src="https://cloud.githubusercontent.com/assets/8503346/18743271/83807038-80b8-11e6-80b1-775c3369940e.png">

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

Author: Mina Lee <mi...@apache.org>

Closes #1448 from minahlee/showInterpreterList and squashes the following commits:

5e2315a [Mina Lee] Remove space in available interpreters list


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

Branch: refs/heads/master
Commit: 3021d46412bd4fadfc00b6240ce5b2c26301d2b7
Parents: c2fc3f5
Author: Mina Lee <mi...@apache.org>
Authored: Thu Sep 22 11:31:14 2016 +0200
Committer: Mina Lee <mi...@apache.org>
Committed: Sun Sep 25 16:12:21 2016 +0900

----------------------------------------------------------------------
 zeppelin-web/src/app/interpreter/interpreter.html | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/3021d464/zeppelin-web/src/app/interpreter/interpreter.html
----------------------------------------------------------------------
diff --git a/zeppelin-web/src/app/interpreter/interpreter.html b/zeppelin-web/src/app/interpreter/interpreter.html
index fe38c16..f1c5e65 100644
--- a/zeppelin-web/src/app/interpreter/interpreter.html
+++ b/zeppelin-web/src/app/interpreter/interpreter.html
@@ -97,9 +97,10 @@ limitations under the License.
           <small>
             <span style="display:inline-block" ng-repeat="interpreter in setting.interpreterGroup"
                   title="{{interpreter.class}}">
-              <span ng-show="!$first">, </span>%<span ng-show="!$parent.$first || $first">{{setting.name}}</span>
-              <span ng-show="(!$parent.$first || $first) && !$first">.</span>
-              <span ng-show="!$first">{{interpreter.name}}</span>
+              <span ng-show="!$first">, </span>
+              %<span ng-show="!$parent.$first || $first">{{setting.name}}</span
+              ><span ng-show="(!$parent.$first || $first) && !$first">.</span
+              ><span ng-show="!$first">{{interpreter.name}}</span>
               <span ng-show="$parent.$first && $first">(default)</span>
             </span>
           </small>