Also load results pane with errors on load
This commit is contained in:
parent
ac3a57a2e8
commit
f1a68f92a0
|
@ -146,7 +146,7 @@
|
|||
|
||||
{% endblock %}
|
||||
{% block widgets %}
|
||||
{% if table %}
|
||||
{% if table or message is not None %}
|
||||
{% include 'partials/results_load.html' %}
|
||||
{% endif %}
|
||||
{% endblock %}
|
|
@ -287,6 +287,7 @@ class DrilldownTableView(SingleTableView):
|
|||
extra_params["tags"] = tags
|
||||
|
||||
context = db.query_results(request, query_params, **extra_params)
|
||||
|
||||
# Unique is for identifying the widgets.
|
||||
# We don't want a random one since we only want one results pane.
|
||||
context["unique"] = "results"
|
||||
|
|
Loading…
Reference in New Issue