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