ui: stop filtering status to changed for successful playbooks

It's useful to filter status to failed/unreachable for failed playbooks
but filtering for changed results by default often leads to no results
being shown at all in the case of playbooks without changes.

I find myself clicking "clear filter" more times than the default filter
being useful so let's not do that anymore.

Change-Id: I7635a2282e1e12bbab4224960d36055a80be8f50
This commit is contained in:
David Moreau Simard 2021-01-22 11:16:03 -05:00
parent 5171bf9e97
commit e3d358f99e
No known key found for this signature in database
GPG Key ID: 7D4729EC4E64E8B7
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@
{% if playbook.status == "failed" %}
<a href="{% url 'ui:playbook' playbook.id %}?status=failed&status=unreachable#results">
{% else %}
<a href="{% url 'ui:playbook' playbook.id %}?changed=True#results">
<a href="{% url 'ui:playbook' playbook.id %}">
{% endif %}
{% endif %}
{% if playbook.name is not None %}{{ playbook.name }}{% else %}{{ playbook.path | truncatepath:50 }}{% endif %}