diff --git a/htdocs/core/lib/company.lib.php b/htdocs/core/lib/company.lib.php
index a5866527b50..e99a6913773 100644
--- a/htdocs/core/lib/company.lib.php
+++ b/htdocs/core/lib/company.lib.php
@@ -1159,7 +1159,7 @@ function show_actions_done($conf, $langs, $db, $filterobj, $objcon='', $noprint=
$out.='';
}
$out.=getTitleFieldOfList($langs->trans("Ref"), 0, $_SERVER["PHP_SELF"], 'a.id', '', $param, '', $sortfield, $sortorder);
- $out.='
'.$langs->trans("Label").' | ';
+ $out.=''.$langs->trans("Label").' | ';
$out.=getTitleFieldOfList($langs->trans("Date"), 0, $_SERVER["PHP_SELF"], 'a.datep, a.id', '', $param, '', $sortfield, $sortorder);
$out.=''.$langs->trans("Type").' | ';
$out.=' | ';
@@ -1176,7 +1176,7 @@ function show_actions_done($conf, $langs, $db, $filterobj, $objcon='', $noprint=
$out.=' | ';
}
$out.=' | ';
- $out.=' | ';
+ $out.=' | ';
$out.=' | ';
$out.='';
$out.=$formactions->select_type_actions($actioncode, "actioncode", '', empty($conf->global->AGENDA_USE_EVENT_TYPE)?1:-1, 0, 0, 1);
diff --git a/htdocs/theme/eldy/style.css.php b/htdocs/theme/eldy/style.css.php
index a2471cd8aa8..e4dd4d64888 100644
--- a/htdocs/theme/eldy/style.css.php
+++ b/htdocs/theme/eldy/style.css.php
@@ -680,6 +680,7 @@ div.myavailability {
line-height: 1.4em;
padding: .4em .1em;
border: 1px solid #BBB;
+ max-width: inherit;
}
.hideonsmartphone { display: none; }
diff --git a/htdocs/theme/md/style.css.php b/htdocs/theme/md/style.css.php
index de92d29361b..dd9c18291d5 100644
--- a/htdocs/theme/md/style.css.php
+++ b/htdocs/theme/md/style.css.php
@@ -685,6 +685,7 @@ div.myavailability {
line-height: 1.4em;
padding: .4em .1em;
border: 1px solid #BBB;
+ max-width: inherit;
}
.hideonsmartphone { display: none; }
|