This is an automated email from the ASF dual-hosted git repository.

chengpan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/zeppelin.git


The following commit(s) were added to refs/heads/master by this push:
     new 364a556dec [ZEPPELIN-6063] Fix delay in paragraph results rendering in 
new UI (#4801)
364a556dec is described below

commit 364a556dec3755d0ecced25b49fc85ea800595df
Author: ChanHo Lee <chanho0...@gmail.com>
AuthorDate: Mon Aug 26 22:50:59 2024 +0900

    [ZEPPELIN-6063] Fix delay in paragraph results rendering in new UI (#4801)
---
 .../src/app/pages/workspace/share/result/result.component.ts         | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git 
a/zeppelin-web-angular/src/app/pages/workspace/share/result/result.component.ts 
b/zeppelin-web-angular/src/app/pages/workspace/share/result/result.component.ts
index c8b75b903a..960340d986 100644
--- 
a/zeppelin-web-angular/src/app/pages/workspace/share/result/result.component.ts
+++ 
b/zeppelin-web-angular/src/app/pages/workspace/share/result/result.component.ts
@@ -224,10 +224,7 @@ export class NotebookParagraphResultComponent implements 
OnInit, AfterViewInit,
         this.renderAngular();
         break;
     }
-    this.cdr.markForCheck();
-    if (this.published) {
-      this.cdr.detectChanges();
-    }
+    this.cdr.detectChanges();
   }
 
   renderHTML(): void {

Reply via email to