You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by bz...@apache.org on 2016/01/11 14:33:47 UTC

incubator-zeppelin git commit: ZEPPELIN-565 ZEPPELIN-564 Paragraph UI bugs

Repository: incubator-zeppelin
Updated Branches:
  refs/heads/master 061a55fa4 -> 3d4dc4366


ZEPPELIN-565 ZEPPELIN-564 Paragraph UI bugs

### What is this PR for?
Bug fix paragraph UI

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

### Is there a relevant Jira issue?
ZEPPELIN-565 & ZEPPELIN-564

### Screenshots (if appropriate)
Before
![5](https://cloud.githubusercontent.com/assets/2031306/12164296/8cb54948-b53a-11e5-8f6c-792dfc83063d.PNG)
![2 1](https://cloud.githubusercontent.com/assets/2031306/12164297/8ec65bdc-b53a-11e5-9d5b-95c8585100b0.PNG)

<hr>
After
<img width="527" alt="screen shot 2016-01-07 at 12 29 13 pm" src="https://cloud.githubusercontent.com/assets/2031306/12164271/60a4068c-b53a-11e5-8909-f44c128d4916.png">
<img width="1671" alt="screen shot 2016-01-07 at 12 29 33 pm" src="https://cloud.githubusercontent.com/assets/2031306/12164277/695f542a-b53a-11e5-84eb-17a174c83733.png">

Author: Renjith Kamath <re...@gmail.com>

Closes #606 from r-kamath/ZEPPELIN-560 and squashes the following commits:

aae30d2 [Renjith Kamath] ZEPPELIN-565 ZEPPELIN-564 Paragraph UI bugs


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

Branch: refs/heads/master
Commit: 3d4dc43669ab0c33e1ac90657960b6f10f38b188
Parents: 061a55f
Author: Renjith Kamath <re...@gmail.com>
Authored: Thu Jan 7 12:26:35 2016 +0530
Committer: Alexander Bezzubov <bz...@apache.org>
Committed: Mon Jan 11 22:33:38 2016 +0900

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


http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/3d4dc436/zeppelin-web/src/app/notebook/paragraph/paragraph.controller.js
----------------------------------------------------------------------
diff --git a/zeppelin-web/src/app/notebook/paragraph/paragraph.controller.js b/zeppelin-web/src/app/notebook/paragraph/paragraph.controller.js
index ed275f4..6a70f48 100644
--- a/zeppelin-web/src/app/notebook/paragraph/paragraph.controller.js
+++ b/zeppelin-web/src/app/notebook/paragraph/paragraph.controller.js
@@ -960,7 +960,7 @@ angular.module('zeppelinWebApp')
       clearUnknownColsFromGraphOption();
       // set graph height
       var height = $scope.paragraph.config.graph.height;
-      angular.element('#p' + $scope.paragraph.id + '_resize').height(height);
+      angular.element('#p' + $scope.paragraph.id + '_graph').height(height);
 
       if (!type || type === 'table') {
         setTable($scope.paragraph.result, refresh);