fix global responsive_debug if env != dev

This commit is contained in:
Mathieu Jaumotte 2021-08-22 08:53:20 +02:00
parent 9fa82fc44c
commit 3bffde6123

View File

@ -38,7 +38,7 @@
</head>
<body>
{% if responsive_debug == 1 %}
{% if responsive_debug is defined and responsive_debug == 1 %}
{{ include('@ChillMain/Layout/_debug.html.twig') }}
{% endif %}