fix variant type id vs attribute type id
CI / testsuite (mysql, 8.1, ) (push) Failing after 0s Details
CI / testsuite (mysql, 8.4, ) (push) Failing after 0s Details
CI / testsuite (pgsql, 8.1, ) (push) Failing after 0s Details
CI / testsuite (pgsql, 8.4, ) (push) Failing after 0s Details
CI / testsuite (sqlite, 8.1, ) (push) Failing after 0s Details
CI / testsuite (sqlite, 8.1, prefer-lowest) (push) Failing after 0s Details
CI / testsuite (sqlite, 8.4, ) (push) Failing after 0s Details
CI / Coding Standard & Static Analysis (push) Failing after 0s Details

This commit is contained in:
Brandon Shipley 2025-06-29 23:27:38 -07:00
parent 46e68d8c56
commit 5fb215c7fd
Signed by: bmfs
GPG Key ID: 14E38571D8BB0DE4
1 changed files with 1 additions and 1 deletions

View File

@ -6,6 +6,6 @@
echo $this->Form->control('name'); echo $this->Form->control('name');
echo $this->Form->control('product_category_id', ['options' => $productCategories, 'empty' => true]); echo $this->Form->control('product_category_id', ['options' => $productCategories, 'empty' => true]);
echo $this->Form->control('product_id', ['options' => $products, 'empty' => true]); echo $this->Form->control('product_id', ['options' => $products, 'empty' => true]);
echo $this->Form->control('attribute_type_id'); echo $this->Form->control('variant_type_id');
echo $this->Form->control('enabled'); echo $this->Form->control('enabled');
?> ?>