umugabodev / MIS

MIT License
0 stars 0 forks source link

[BUG] Fields Unaccessed on frontend #24

Open GisaKaze opened 4 days ago

GisaKaze commented 4 days ago

Bug Description

The last three fields of the element component in this case'Soldier Kit'are not visible on the frontend

                      elements: [
                        { type: 'text', name: 'bdu', title: 'BDU', defaultValue: 'Battle Dress Uniform' || formData['bdu'], isRequired: true },
                        { type: 'text', name: 'officedress', title: 'Officer Dress', defaultValue: 'Office Dress' || formData['officedress'], isRequired: true },
                        { type: 'text', name: 'jungleboots', title: 'Jungle Boots', defaultValue: formData['jungleboots'] || 'Jungle Boots', isRequired: true },
                        { type: 'text', name: 'plasticboots', title: 'Plastic Boots', defaultValue: formData['plasticboots'] || 'Plastic Boots/Bottes', isRequired: true },
                        { type: 'text', name: 'officeshoes', title: 'Officers Shoes', defaultValue: formData['officeshoes'] || 'Office Shoes', isRequired: true },
                        { type: 'text', name: 'bdusize', title: 'BDU Size', defaultValue: formData['bdusize'] || '', isRequired: true },
                        { type: 'text', name: 'officedresssize', title: 'Officer Dress Size', defaultValue: formData['officedresssize'] || '', isRequired: true },
                        { type: 'number', name: 'junglebootssize', title: 'Jungle Boots Size', defaultValue: formData['junglebootssize'] || '', isRequired: true },
                        { type: 'number', name: 'plasticbootssize', title: 'Plastic Boots Size', defaultValue: formData['plasticbootssize'] || '', isRequired: true },
                        { type: 'number', name: 'officeshoessize', title: 'Officers Shoes Size', defaultValue: formData['officeshoessize'] || '', isRequired: true }
                      ]
GisaKaze commented 4 days ago

@umugabo or @KendrickAudace you should have a look on this issue