Skip to content

Commit

Permalink
fix(isochrone): grey submit button
Browse files Browse the repository at this point in the history
  • Loading branch information
azarz committed Jan 10, 2025
1 parent 278b95b commit e517cff
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/js/isochrone/isochrone-dom.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ let IsochroneDOM = {
</div>
<!-- bouton de calcul -->
<input id="isochroneCompute" class="btnIsochroneCompute disabled" type="submit" value="Valider">
<input id="isochroneCompute" class="btnIsochroneCompute disabled" type="submit" value="Calculer">
</form>
</div>
`;
Expand Down
1 change: 0 additions & 1 deletion src/js/isochrone/isochrone.js
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,6 @@ class Isochrone {
this.__unsetComputeButtonLoading();
this.computed = false;

this.dom.isochroneCompute.classList.add("disabled");

document.querySelectorAll(".inputPOIFilterItem").forEach((el) => {
var layers = LayersGroup.getGroupLayers(Globals.poi.id).filter((layer) => { return layer.metadata.thematic === el.name; });
Expand Down

0 comments on commit e517cff

Please sign in to comment.