missing the submit button for updating medical data

Gibbon version: 22.0.00

when a parent submitted a medical data update, the admin staff can see a submit button to approve the request. is there anyways that the submit button can be recalled?

Attached 2 screen shots for your reference.

Hi Chris, it looks like this may have been a bug back in v22 but has since been fixed. Upgrading to a newer version should help in this case. For an interim fix, you can remove the if statement around line 219 of modules/Data Updater/data_medical_manage_edit.php

From

`            if ($changeCount > 0) {
                $row = $form->addRow();
                    $row->addSubmit();
            }`
```


to 
                
`                    $row = $form->addRow();
                    $row->addSubmit();`
```

thank you Sandra, that fixed the issue.