From 7be98ee7b4faf3853104ed979a381fa38f7b7c63 Mon Sep 17 00:00:00 2001
From: aydreeihn <adriane@enhancesoft.com>
Date: Wed, 18 Jul 2018 12:34:40 -0500
Subject: [PATCH] Ticket-View Collaborator Collapsible Fix:

This commit fixes an issue where the font for the word 'Collaborators' was being overwritten by the font associated with the icon-caret-right class.
---
 include/staff/ticket-view.inc.php | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/include/staff/ticket-view.inc.php b/include/staff/ticket-view.inc.php
index ef7aff8e9..173bcbcb2 100644
--- a/include/staff/ticket-view.inc.php
+++ b/include/staff/ticket-view.inc.php
@@ -770,8 +770,8 @@ if ($errors['err'] && isset($_POST['a'])) {
                    <td>
                    <div style="margin-bottom:2px;">
                     <?php
-                         echo sprintf('<span><a id="show_ccs"
-                                 class="icon-caret-right"></i>&nbsp;%s </a>
+                         echo sprintf('<span><a id="show_ccs">
+                                 <i id="arrow-icon" class="icon-caret-right"></i>&nbsp;%s </a>
                                  &nbsp;
                                  <a class="manage-collaborators
                                  collaborators preview noclick %s"
@@ -1265,7 +1265,7 @@ $(function() {
     });
 
   $('#show_ccs').click(function() {
-    var show = $(this);
+    var show = $('#arrow-icon');
     var collabs = $('a#managecollabs');
     $('#ccs').slideToggle('fast', function(){
         if ($(this).is(":hidden")) {
-- 
GitLab