mirror of
https://github.com/ansible/awx.git
synced 2026-03-04 18:21:03 -03:30
Ensure that days is always an integer
This commit is contained in:
@@ -102,7 +102,7 @@ function NodeModalForm({
|
||||
)
|
||||
) {
|
||||
values.extra_data = {
|
||||
days: values?.daysToKeep,
|
||||
days: parseInt(values?.daysToKeep, 10),
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user