Skip to content

Commit

Permalink
Ensure identifying field is in first column of index view (CO-2242) (#18
Browse files Browse the repository at this point in the history
)
  • Loading branch information
arlen authored Oct 12, 2021
1 parent 59edd61 commit d0864ad
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions app/templates/Matchgrids/pending.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,12 @@

<table>
<tr>
<th><?= __('match.fd.sor'); ?></th>
<th><?= __('match.fd.sorid'); ?></th>
<th><?= __('match.fd.sor'); ?></th>
<th><?= __('match.fd.request_time'); ?></th>
</tr>
<?php foreach($vv_pending as $p): ?>
<tr class="linked-row spin">
<td>
<?= $p['sor']; ?>
</td>
<td>
<?= $this->Html->link(
$p['sorid'],
Expand All @@ -56,6 +53,9 @@
['class' => 'row-link']
); ?>
</td>
<td>
<?= $p['sor']; ?>
</td>
<td>
<?= $p['request_time']; ?>
</td>
Expand Down
2 changes: 1 addition & 1 deletion app/templates/Permissions/columns.inc
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
*/

$indexColumns = [
'matchgrid_id' => [ 'type' => 'fk' ],
'username' => [
'type' => 'link'
],
'matchgrid_id' => [ 'type' => 'fk' ],
'permission' => [
'type' => 'enum',
'class' => 'PermissionEnum'
Expand Down

0 comments on commit d0864ad

Please sign in to comment.