This commit is contained in:
James Cole 2019-08-13 18:38:15 +02:00
parent 843cced454
commit 3fb09136cf
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E

View File

@ -214,7 +214,7 @@ class AutoCompleteController extends Controller
$array = array_merge($array, $limited->toArray());
foreach ($array as $index => $item) {
// give another key for consistency
$array[$index]['name'] = sprintf('#%d: %s', $item['id'], $item['description']);
$array[$index]['name'] = sprintf('#%d: %s', $item['transaction_group_id'], $item['description']);
}