Browse Source

UI-2489: fix mailto link for report error in call logs

4.3
Jean-Roch Maitre 9 years ago
parent
commit
dfecf4796c
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      submodules/callLogs/callLogs.js
  2. +1
    -1
      views/callLogs-cdrsList.html

+ 1
- 1
submodules/callLogs/callLogs.js View File

@ -366,7 +366,7 @@ define(function(require){
+ "%0D%0AHangup Cause: " + (cdr.hangup_cause || "")
+ "%0D%0ACall ID: " + cdr.call_id
+ "%0D%0AOther Leg Call ID: " + (cdr.other_leg_call_id || "")
+ "%0D%0AHandling Server: " + (cdr.handling_server || "")
+ "%0D%0AHandling Server: " + (cdr.media_server || "")
};
};


+ 1
- 1
views/callLogs-cdrsList.html View File

@ -42,7 +42,7 @@
</div>
<div class="grid-cell actions">
<div class="sub-cell single-cell">
{{#if ../showReport}}<a class="monster-link" href="{{this.mailtoLink}}"><i data-placement="top" data-toggle="tooltip" data-placement="top" data-original-title="{{ @root.i18n.callLogs.actions.report }}" class="fa fa-lg fa-fire-extinguisher"></i></a>{{/if}}
{{#if ../showReport}}<a class="monster-link" target="_blank" href="{{this.mailtoLink}}"><i data-placement="top" data-toggle="tooltip" data-placement="top" data-original-title="{{ @root.i18n.callLogs.actions.report }}" class="fa fa-lg fa-fire-extinguisher"></i></a>{{/if}}
</div>
</div>
</div>


Loading…
Cancel
Save