diff --git a/flexmeasures/ui/crud/assets.py b/flexmeasures/ui/crud/assets.py index 52072f72a..6e89cd359 100644 --- a/flexmeasures/ui/crud/assets.py +++ b/flexmeasures/ui/crud/assets.py @@ -39,12 +39,12 @@ class AssetForm(FlaskForm): name = StringField("Name") latitude = DecimalField( "Latitude", - places=4, + places=None, render_kw={"placeholder": "--Click the map or enter a latitude--"}, ) longitude = DecimalField( "Longitude", - places=4, + places=None, render_kw={"placeholder": "--Click the map or enter a longitude--"}, ) attributes = StringField("Other attributes (JSON)", default="{}")