Completed
Push — master ( 0964f5...56617a )
by Oscar
03:10
created
src/templates/pages/list.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,10 +12,10 @@
 block discarded – undo
12 12
 				<?php foreach (reset($rows) as $name => $column): ?>
13 13
 				<th class="format <?= $column->get('class').($search->getSort() === $name ? ' is-sorted' : '') ?>">
14 14
 					<a href="<?= $app->getRouteUrl('list', ['entity' => $entity->getName()], [
15
-						'query' => isset($search) ? $search->getQuery() : null,
16
-						'sort' => $name,
17
-						'direction' => ($search->getSort() === $name) ? ($search->getDirection() === 'ASC' ? 'DESC' : 'ASC') : 'ASC'
18
-					]) ?>">
15
+                        'query' => isset($search) ? $search->getQuery() : null,
16
+                        'sort' => $name,
17
+                        'direction' => ($search->getSort() === $name) ? ($search->getDirection() === 'ASC' ? 'DESC' : 'ASC') : 'ASC'
18
+                    ]) ?>">
19 19
 						<?= $column->label(); ?>
20 20
 					</a>
21 21
 				</th>
Please login to merge, or discard this patch.