Skip to content

Commit

Permalink
bringing back row limit of 200 for field management list (#1489)
Browse files Browse the repository at this point in the history
  • Loading branch information
bitshiftersgmbh authored Mar 20, 2024
1 parent bbb6f7b commit 91dc706
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/manager/lib/yform/manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -1324,7 +1324,7 @@ public function getFieldPage()
$panel_options .= '<small class="rex-panel-option-title">' . rex_i18n::msg('yform_table') . '</small> ' . $fragment->parse('core/buttons/button_group.php');

$sql = 'select id, prio, type_id, type_name, name, label from ' . rex_yform_manager_field::table() . ' where table_name="' . $table->getTableName() . '"';
$list = rex_list::factory($sql, defaultSort: [
$list = rex_list::factory($sql, rowsPerPage: 200, defaultSort: [
'prio' => 'asc',
]);

Expand Down

0 comments on commit 91dc706

Please sign in to comment.