Skip to content

Commit

Permalink
Add missing changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ioannis Igoumenos committed May 16, 2022
1 parent e18fb76 commit ff50e79
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion app/src/Model/Table/ApiUsersTable.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ class ApiUsersTable extends Table {
use \App\Lib\Traits\PrimaryLinkTrait;
use \App\Lib\Traits\TableMetaTrait;
use \App\Lib\Traits\ValidationTrait;

use \App\Lib\Traits\SearchFilterTrait;

/**
* Perform Cake Model initialization.
*
Expand Down
2 changes: 1 addition & 1 deletion app/src/Model/Table/PeopleTable.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class PeopleTable extends Table {
use \App\Lib\Traits\TableMetaTrait;
use \App\Lib\Traits\ValidationTrait;
use \App\Lib\Traits\SearchFilterTrait;

/**
* Perform Cake Model initialization.
*
Expand Down
1 change: 1 addition & 0 deletions app/templates/Types/columns.inc
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ $indexColumns = [
$topLinks = [
[
'icon' => 'settings_backup_restore',
'order' => 'Default',
'label' => __d('operation', 'Types.restore'),
'link' => [
'action' => 'restore'
Expand Down
4 changes: 3 additions & 1 deletion app/templates/layout/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
<?= $this->Html->css([
'fonts/Font-Awesome-4.6.3/css/font-awesome.min',
'bootstrap/bootstrap.min',
'select2/select2.min',
'co-color',
'co-base',
'co-responsive'
Expand All @@ -66,7 +67,8 @@
<!-- Load Bootstrap and jQuery (other scripts at bottom) -->
<?= $this->Html->script([
'bootstrap/bootstrap.bundle.min.js',
'jquery/jquery.min.js'
'jquery/jquery.min.js',
'select2/select2.min.js'
]) . "\n"; ?>

<!-- Include external files and scripts -->
Expand Down

0 comments on commit ff50e79

Please sign in to comment.