Commit 30f6961f authored by Evren Kutar's avatar Evren Kutar

v0.0.3.1 formset float field fix

parent 7115542f
...@@ -64,7 +64,7 @@ form_generator.factory('Generator', function ($http, $q, $log, $location, $modal ...@@ -64,7 +64,7 @@ form_generator.factory('Generator', function ($http, $q, $log, $location, $modal
}); });
} }
if (k.type == 'int' || 'float') { if (k.type == 'int' || k.type == 'float') {
k.type = 'number'; k.type = 'number';
} }
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment