Skip to content

Commit

Permalink
noshow temp fix search & layout fix
Browse files Browse the repository at this point in the history
  • Loading branch information
driesvanspauwen committed Nov 14, 2023
1 parent 83642b5 commit 3c1e721
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion module/ShopBundle/Resources/config/router.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
'shop_admin_shop_reservation' => array(
'type' => 'Laminas\Router\Http\Segment',
'options' => array(
'route' => '/admin/shop/reservation[/:action[/:id][/page/:page]][/]',
'route' => '/admin/shop/reservation[/:action[/:id]][/:field/:string][/type/:type][/page/:page][/]',
'constraints' => array(
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
'id' => '[0-9]*',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,7 @@
display: function (data) {
$('#reservation_search table').find('tr.item').remove();
$(data).each(function () {
console.log('Processing result:');
$('#reservation_search table').append(row = $('<tr>', {class: 'item item-' + this.id}));
row.append('<td>' + this.person + '</td>')
.append('<td>' + this.product + '</td>')
Expand Down

0 comments on commit 3c1e721

Please sign in to comment.