Skip to content
Snippets Groups Projects
Commit fd285cfa authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[experiments] Only show user errors in case the block is not cached

parent 1dca94d7
No related branches found
No related tags found
1 merge request!211Issue 433
Pipeline #
...@@ -256,7 +256,7 @@ ...@@ -256,7 +256,7 @@
</li> </li>
{% endif %} {% endif %}
{% if block.done and block_status != 'Cancelled' %} {% if block.done and block_status != 'Cancelled' %}
{% if error_report %} {% if error_report and block_status != 'Cached' %}
<li>Captured Errors (on user code): <li>Captured Errors (on user code):
<pre class="console-output">{{ error_report }}</pre> <pre class="console-output">{{ error_report }}</pre>
</li> </li>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment