Skip to content

Commit

Permalink
Merge pull request #542 from H2-invent/hotfix/fix-missong-closing-tag…
Browse files Browse the repository at this point in the history
…-in-phone-number

addd slash to a when adding phone number
  • Loading branch information
holema authored Aug 12, 2024
2 parents 6470d64 + 4b09a24 commit 4eea245
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions templates/conference_modules/inviteUsersToOpenRooms.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@
{% for key,n in getJigasiNumber(room) %}
{% for number in n %}
{% if room.server.jigasiApiUrl is not null %}
<p><small>({{ key }}) {{ number }} {{ 'email.sip.pin'|trans }}
<p>
<small>({{ key }}) {{ number }} {{ 'email.sip.pin'|trans }}
: {{ getJigasiPin(room)|addRepetiveCharacters(' ',3) }}#
<button class="btn btn-outline-primary"
type="button" id="button-addon2"
Expand All @@ -93,15 +94,19 @@
>
<i class="fa-regular fa-copy"></i>
</button>
</small><p><br>
</small>
<p>
<br>
{% elseif room.callerRoom %}
<p><small>({{ key }}) {{ number }} {{ 'email.sip.pin'|trans }}
: {{ room.callerRoom.callerId |addRepetiveCharacters(' ',3) }}#
<a href="#" data-clipboard-text="{{ number }},,,,{{ room.callerRoom.callerId }}#" class="text-white">
<a href="#" data-clipboard-text="{{ number }},,,,{{ room.callerRoom.callerId }}#"
class="text-white">

<i class="fa-regular fa-copy"></i>
<a>
</small></p>
</a>
</small>
</p>
<br>
{% endif %}
{% endfor %}
Expand Down

0 comments on commit 4eea245

Please sign in to comment.