Skip to content

Commit

Permalink
Merge pull request #1305 from CuBoulder/issue/1304
Browse files Browse the repository at this point in the history
Separates person first and last name with space instead of newline
  • Loading branch information
patrickbrown-io authored and web-flow committed Sep 18, 2024
2 parents 92957d0 + dcaab09 commit c2db02e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- ### Separates person first and last name with space instead of newline
[bug] Resolves CuBoulder/tiamat-theme#1304
---

- ### Newsletter: Major bug fixes and style adjustments
### Newsletter - Node
- Centering on Newsletter pages (the page, not the email version) was not working correctly for user-created content in Teaser, only if an image was not supplied. This has been corrected. Resolves https://github.com/CuBoulder/tiamat-theme/issues/1264
Expand Down
3 changes: 1 addition & 2 deletions templates/content/node--ucb-person.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@
<article{{ attributes.addClass(classes) }} itemscope itemtype="https://schema.org/Person">
<div class="container ucb-person-header">
<h1 class="ucb-person-name">
{{ content.field_ucb_person_first_name }}
{{ content.field_ucb_person_last_name }}
{{ content.field_ucb_person_first_name }} {{ content.field_ucb_person_last_name }}
</h1>
{{ content.field_ucb_person_pronouns }}
{% if content.field_ucb_person_title.0 or content.field_ucb_person_department.0 %}
Expand Down

0 comments on commit c2db02e

Please sign in to comment.