Validate animal weight field as a number.

This commit is contained in:
Michael Stenta 2018-04-17 15:16:33 -04:00
parent 52ef2cc038
commit 226bf3f393
1 changed files with 1 additions and 0 deletions

View File

@ -401,6 +401,7 @@ function farm_livestock_form_farm_asset_form_alter(&$form, &$form_state, $form_i
'#type' => 'textfield',
'#title' => t('Weight'),
'#default_value' => !empty($weight['value']) ? $weight['value'] : '',
'#element_validate' => array('element_validate_number'),
);
$form['weight']['units'] = array(
'#type' => 'textfield',