Skip to content

Commit

Permalink
fixes panel when default connection is specified
Browse files Browse the repository at this point in the history
Impossible to access an attribute ("adapter") on a string variable... is thrown when default connection is defined, then config is a string name of that connection, not a configuration options
  • Loading branch information
Gamesh authored and havvg committed Nov 28, 2016
1 parent 1abe7fc commit 6ad5d58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Resources/views/Panel/configuration.html.twig
Expand Up @@ -36,7 +36,7 @@
</tr>
</thead>
<tbody>
{% for name, config in configuration.datasources %}
{% for name, config in configuration.datasources if config is iterable %}
<tr>
<th rowspan="5" style="vertical-align: top;">
{{ name }}
Expand Down

0 comments on commit 6ad5d58

Please sign in to comment.