Skip to content

Commit

Permalink
Merge branch '1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanjeev Papnoi committed Aug 7, 2021
2 parents 9c3ec03 + 26fbce1 commit a798acb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions Resources/views/Groups/createSupportGroup.html.twig
Expand Up @@ -47,8 +47,7 @@
{% for agent in user_service.getAgentsPartialDetails %}
<li data-id="{{agent.id}}">
{% if agent.smallThumbnail != null %}
<img src="{{ app.request.scheme ~'://' ~ app.request.httpHost ~ asset('') ~ agent.smallThumbnail }}"/>

<img src="{{ app.request.scheme ~'://' ~ app.request.httpHost ~ asset('') ~ agent.smallThumbnail }}"/>
{% else %}
<img src="{{ asset(default_agent_image_path) }}" alt=""/>
{% endif %}
Expand Down
2 changes: 1 addition & 1 deletion Resources/views/Groups/updateSupportGroup.html.twig
Expand Up @@ -47,7 +47,7 @@
{% for agent in user_service.getAgentsPartialDetails %}
<li data-id="{{agent.id}}">
{% if agent.smallThumbnail != null %}
<img src="{{ agent.smallThumbnail }}"/>
<img src="{{ app.request.scheme ~'://' ~ app.request.httpHost ~ asset('') ~ agent.smallThumbnail }}"/>
{% else %}
<img src="{{ asset(default_agent_image_path) }}" alt=""/>
{% endif %}
Expand Down
2 changes: 1 addition & 1 deletion Resources/views/Teams/createSupportTeam.html.twig
Expand Up @@ -47,7 +47,7 @@
{% for agent in user_service.getAgentsPartialDetails() %}
<li data-id="{{agent.id}}">
{% if agent.smallThumbnail != null %}
<img src="{{ agent.smallThumbnail }}"/>
<img src="{{ app.request.scheme ~'://' ~ app.request.httpHost ~ asset('') ~ agent.smallThumbnail }}"/>
{% else %}
<img src="{{ asset(default_agent_image_path) }}" alt=""/>
{% endif %}
Expand Down
2 changes: 1 addition & 1 deletion Resources/views/Teams/updateSupportTeam.html.twig
Expand Up @@ -47,7 +47,7 @@
{% for agent in user_service.getAgentsPartialDetails() %}
<li data-id="{{agent.id}}">
{% if agent.smallThumbnail != null %}
<img src="{{ agent.smallThumbnail }}"/>
<img src="{{ app.request.scheme ~'://' ~ app.request.httpHost ~ asset('') ~ agent.smallThumbnail }}"/>
{% else %}
<img src="{{ asset(default_agent_image_path) }}" alt=""/>
{% endif %}
Expand Down

0 comments on commit a798acb

Please sign in to comment.