Skip to content
Snippets Groups Projects

Added ID as additional sort criterion when querying entity list

Merged Kurt Trowbridge requested to merge issue/texts-3436472:3436472-texts-view-does into 1.0.x
1 file
+ 3
1
Compare changes
  • Side-by-side
  • Inline
@@ -106,7 +106,9 @@ abstract class TranslationFormBase extends FormBase {
}
// Sort
$query->sort('changed', 'DESC');
$query
->sort('changed', 'DESC')
->sort('id', 'DESC');
// Limit
$query = $query->pager('30');
Loading