Skip to content

Commit

Permalink
feat(areabrick-overview): translate name and description (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
mike4git authored Oct 28, 2024
1 parent a9a9633 commit d3ff72b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/bricks/overview.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
<tbody>
{% for brick in bricks %}
<tr>
<td>{{ brick.name }}</td>
<td>{{ brick.name|trans }}</td>
<td>{{ brick.id }}</td>
<td>{{ brick.version }}</td>
<td>{{ brick.description }}</td>
<td>{{ brick.description|trans }}</td>
<td>{{ brick.template }}</td>
<td>
{% set published_pages = brick.pages|filter(page => page.published) %}
Expand Down

0 comments on commit d3ff72b

Please sign in to comment.