From 732819ff730af4f912387232bacbddb9c1dfd24b Mon Sep 17 00:00:00 2001 From: Brandon Shipley Date: Wed, 2 Apr 2025 00:36:54 -0700 Subject: [PATCH] keyField vs valueField switched oops --- src/Controller/ProductCategoriesController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Controller/ProductCategoriesController.php b/src/Controller/ProductCategoriesController.php index f4ecc4f..deb41d7 100644 --- a/src/Controller/ProductCategoriesController.php +++ b/src/Controller/ProductCategoriesController.php @@ -164,7 +164,7 @@ class ProductCategoriesController extends AppController $form = $this->request->getQuery('form', 'product_category'); if ($form === 'product') { $productCategoriesQ = $productCategoriesTable - ->find('treeList', keyPath: 'name', valuePath: 'internal_id'); + ->find('treeList', keyPath: 'internal_id', valuePath: 'name'); } else { $productCategoriesQ = $productCategoriesTable->find('treeList'); }