fix no value being rendered for 'isDev' var in non-dev builds
This commit is contained in:
parent
bbd0749d13
commit
43ec433f31
|
@ -25,7 +25,7 @@
|
|||
|
||||
<script type="text/javascript">
|
||||
var context = '{{ path('/') }}';
|
||||
var isDev = {{ isDev }};
|
||||
var isDev = {{ isDev|default('false') }};
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
|
|
Reference in a new issue