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