Skip to content

Commit

Permalink
Evarisk#1860 [Question] add : adding max width for question mass
Browse files Browse the repository at this point in the history
  • Loading branch information
evarisk-kilyan committed Aug 28, 2024
1 parent 00b3a92 commit be287ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion view/question/question_list.php
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@
if (is_array($sheets) && !empty($sheets)) {
$sheetArray = [];
foreach ($sheets as $sheet) {
$sheetArray[$sheet->id] = $sheet->ref . ' - ' . $sheet->label;
$sheetArray[$sheet->id] = dol_trunc($sheet->ref . ' - ' . $sheet->label);
}
$formQuestion = [
['type' => 'select', 'name' => 'sheet', 'label' => $langs->trans('Sheet'), 'values' => $sheetArray]
Expand Down

0 comments on commit be287ae

Please sign in to comment.