Solved tab bug

This commit is contained in:
Kevin Veen-Birkenbach 2025-07-07 04:51:04 +02:00
parent eccace60f4
commit a1465ef886
No known key found for this signature in database
GPG Key ID: 44D8F11FD62F878E

View File

@ -3,16 +3,16 @@
and not (applications[application_id].docker.redis.enabled and not (applications[application_id].docker.redis.enabled
| default(false) | default(false)
| bool) %} | bool) %}
depends_on: [] depends_on: []
{% else %} {% else %}
depends_on: depends_on:
{% if not applications | is_feature_enabled('central_database', application_id) %} {% if not applications | is_feature_enabled('central_database', application_id) %}
database: database:
condition: service_healthy condition: service_healthy
{% endif %} {% endif %}
{% if applications[application_id].docker.redis.enabled | default(false) | bool %} {% if applications[application_id].docker.redis.enabled | default(false) | bool %}
redis: redis:
condition: service_healthy condition: service_healthy
{% endif %} {% endif %}
{% endif %} {% endif %}
{{ "\n" }} {{ "\n" }}