Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correction impossibilité de donner une nouvelle localisation à un secteur #57

Merged
merged 1 commit into from
Feb 18, 2024

Conversation

daniel-roulin
Copy link
Contributor

En lien avec #52
Le map-input de CragSectorForm cherchait à utiliser crag.latitude si data.latitude n'existait pas. Cependant, crag était nul. Ce changement retire crag.latitude et crag.longitude et laisse à map-input la gestion des valeurs nulles.

Copy link
Contributor

@lucien-chastan lucien-chastan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello !

Merci de ta suggestion, tu me dira si tu veux faire le correctif, ou si tu préfère que je le fasse

:default-latitude="data.latitude || crag.latitude"
:default-longitude="data.longitude || crag.longitude"
:default-latitude="data.latitude"
:default-longitude="data.longitude"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

En fait si on fait ça, par défaut le marquer sera quelque part vers Nevers (~ centre de la France)

Par contre il y a un bug quand on passe le "crag'" au CragSectorForm

Ce que je te propose, c'est dans ce fichier :
pages/crags/_cragId/_cragName/sectors/_cragSectorId/_cragSectorName/edit.vue

Au niveau du composant on donne le crag qui est dans le crag_sector

<crag-sector-form
  :crag="cragSector.crag"
  :crag-sector="cragSector"
  submit-methode="put"
/>

Et du coup on peut supprimer l'import de CragConcern
Ça économisera une requête à l'api en plus : )

@lucien-chastan lucien-chastan merged commit c1792bf into oblyk:master Feb 18, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants