diff --git a/view/control/control_card.php b/view/control/control_card.php
index 19ba3012..1d57ba73 100644
--- a/view/control/control_card.php
+++ b/view/control/control_card.php
@@ -368,7 +368,7 @@
$filter = 's.type = ' . '"' . $object->element . '" AND s.status = ' . Sheet::STATUS_LOCKED;
$filter .= (!empty($filterType) ? ' AND s.element_linked LIKE "%' . $filterType . '%"' : '');
print '
' . ($source != 'pwa' ? $langs->trans('Sheet') : img_picto('', $sheet->picto . '_2em', 'class="pictofixedwidth"')) . ' | ';
- print ($source != 'pwa' ? img_picto('', $sheet->picto, 'class="pictofixedwidth"') : '') . $sheet->selectSheetList(GETPOST('fk_sheet') ?: $sheet->id, 'fk_sheet', $filter);
+ print ($source != 'pwa' ? img_picto('', $sheet->picto, 'class="pictofixedwidth"') : '') . $sheet->selectSheetList(GETPOST('fk_sheet') ?: $sheet->id, 'fk_sheet', $filter, 0);
if ($source != 'pwa') {
print '';
}
|