chore: add missing margin-bottom in importers (#2627)

This commit is contained in:
Yohan Boniface 2025-04-09 15:59:00 +02:00 committed by GitHub
commit cfcdfb9ed8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 25 additions and 21 deletions

View file

@ -8,6 +8,7 @@ import { AutocompleteCommunes } from './communesfr.js'
const TEMPLATE = `
<h3>Cadastre</h3>
<p>Importer les données cadastrales dune commune française.</p>
<div class="formbox">
<select name="theme">
<option value="batiments">Bâtiments</option>
<option value="communes">Communes</option>
@ -20,6 +21,7 @@ const TEMPLATE = `
</select>
<label id="boundary">
</label>
</div>
`
export class Importer {

View file

@ -16,15 +16,17 @@ const BOUNDARY_TYPES = {
const TEMPLATE = `
<h3>GeoDataMine</h3>
<p>${translate('GeoDataMine: thematic data from OpenStreetMap')}.</p>
<div class="formbox">
<select name="theme">
<option value="">${translate('Choose a theme')}</option>
</select>
<label>
<input type="checkbox" name="aspoint" />
${translate('Symplify all geometries to points')}
${translate('Simplify all geometries to points')}
</label>
<label id="boundary">
</label>
</div>
`
class Autocomplete extends SingleMixin(BaseAjax) {