Repository: zeppelin
Updated Branches:
  refs/heads/master 9463fb854 -> a29fe1473


[ZEPPELIN-1078] Does not show the text result in the paragraph sometimes.

### What is this PR for?
This PR fixes the problem that does not show the text result in the paragraph 
sometimes.

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

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

### How should this be tested?
Try run python code constantly like screenshot.

### Screenshots (if appropriate)
  - before
![before](https://cloud.githubusercontent.com/assets/3348133/16436829/214a2b4e-3ddc-11e6-9af2-2ee1d7e2cf96.gif)

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

Author: astroshim <hss...@nflabs.com>

Closes #1104 from astroshim/ZEPPELIN-1078 and squashes the following commits:

e0044db [astroshim] rebase
189c5eb [astroshim] remove resultRefreshed from TEXT type only
ec44166 [astroshim] remove resultRefreshed from TEXT type only
edf2397 [astroshim] Merge branch 'master' into ZEPPELIN-1078
441357c [astroshim] remove resultRefreshed value.


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

Branch: refs/heads/master
Commit: a29fe14735e54d812a377b457922bd9039953da5
Parents: 9463fb8
Author: astroshim <hss...@nflabs.com>
Authored: Tue Jul 5 11:26:39 2016 +0900
Committer: Damien CORNEAU <cornead...@gmail.com>
Committed: Tue Jul 5 14:21:37 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/zeppelin/blob/a29fe147/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 211ab59..dd0ad7d 100644
--- a/zeppelin-web/src/app/notebook/paragraph/paragraph.controller.js
+++ b/zeppelin-web/src/app/notebook/paragraph/paragraph.controller.js
@@ -475,7 +475,7 @@ angular.module('zeppelinWebApp')
         $scope.renderHtml();
       } else if (newType === 'ANGULAR' && resultRefreshed) {
         $scope.renderAngular();
-      } else if (newType === 'TEXT' && resultRefreshed) {
+      } else if (newType === 'TEXT') {
         $scope.renderText();
       }
 

Reply via email to