Fix responsive

This commit is contained in:
Laurent Destailleur 2021-02-02 11:15:16 +01:00
parent 2e9656a5b2
commit 3b9bd3cc40

View File

@ -134,7 +134,7 @@ class box_last_ticket extends ModeleBoxes
$thirdparty->name = $objp->company_name; $thirdparty->name = $objp->company_name;
$link = $thirdparty->getNomUrl(1); $link = $thirdparty->getNomUrl(1);
} else { } else {
$link = dol_print_email($objp->origin_email); $link = '<span title="'.$objp->origin_email.'">'.dol_print_email($objp->origin_email).'</span>';
} }
$r = 0; $r = 0;
@ -149,15 +149,15 @@ class box_last_ticket extends ModeleBoxes
// Subject // Subject
$this->info_box_contents[$i][$r] = array( $this->info_box_contents[$i][$r] = array(
'td' => '', 'td' => 'class="tdoverflowmax200"',
'text' => $objp->subject, // Some event have no ref 'text' => '<span title="'.$objp->subject.'">'.$objp->subject.'</span>', // Some event have no ref
'url' => DOL_URL_ROOT."/ticket/card.php?track_id=".$objp->track_id, 'url' => DOL_URL_ROOT."/ticket/card.php?track_id=".$objp->track_id,
); );
$r++; $r++;
// Customer // Customer
$this->info_box_contents[$i][$r] = array( $this->info_box_contents[$i][$r] = array(
'td' => '', 'td' => 'class="tdoverflowmax100"',
'text' => $link, 'text' => $link,
'asis' => 1, 'asis' => 1,
); );