mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Return SUCCESS if result is empty
This commit is contained in:
parent
463c0661a1
commit
c36fe8a9c4
1 changed files with 1 additions and 1 deletions
|
|
@ -42,7 +42,7 @@ object ZeppelinRDisplay {
|
|||
|
||||
val body = document.body()
|
||||
|
||||
if (body.getElementsByTag("p").isEmpty) return RDisplay(body.html(), HTML, ERROR)
|
||||
if (body.getElementsByTag("p").isEmpty) return RDisplay(body.html(), HTML, SUCCESS)
|
||||
|
||||
val bodyHtml = body.html()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue