Skip to content

Commit

Permalink
System: added Data field to searchableColumns to fix the 'Application…
Browse files Browse the repository at this point in the history
… search' (#1843)
  • Loading branch information
AbbadiAhmad authored Sep 5, 2024
1 parent 6bc05e2 commit 4d55430
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ v28.0.00
User Admin: updated Manage Users to override required custom fields when manually editing a user

Bug Fixes
Admissions: fixed the search results on the Manage Application page to include json data
Finance: fixed bulk exporting invoice fees for Pending invoices
Form Groups: fixed Year Group Summary list when looking at non-current school years
Timetable: fixed permission checking before displaying user status info in View Timetables list
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/Admissions/AdmissionsApplicationGateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class AdmissionsApplicationGateway extends QueryableGateway
private static $tableName = 'gibbonAdmissionsApplication';
private static $primaryKey = 'gibbonAdmissionsApplicationID';

private static $searchableColumns = ['owner', 'gibbonAdmissionsApplicationID'];
private static $searchableColumns = ['owner', 'gibbonAdmissionsApplicationID', 'data'];

/**
* @param QueryCriteria $criteria
Expand Down

0 comments on commit 4d55430

Please sign in to comment.