kimai / DemoBundle

Kimai Demo bundle for developers, who want to create a plugin and extend the time-tracking experience
MIT License
16 stars 11 forks source link

Error rendering template #10

Closed Wonko52 closed 3 months ago

Wonko52 commented 3 months ago

Fresh installation: when calling up the plug-in page, the error appears: An exception has been thrown during the rendering of a template ("Warning: Array to string conversion").

The solution was: Line 171 in var/plugins/DemoBundle/Resources/views/index.html.twig

{{ value }} replace with {{ value is iterable ? value|join(', ') : value }}

kevinpapst commented 3 months ago

Thanks, fixed in latest release