Skip to content

Commit

Permalink
Augmente le zoom maxi du calendrier à 6 mois (#118]
Browse files Browse the repository at this point in the history
  • Loading branch information
polosson committed Mar 24, 2021
1 parent 0cc7009 commit b607ab6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Ce projet adhère au principe du [Semantic Versioning](https://semver.org/spec/v
- Améliore la disposition des filtres dans les pages de listing du matériel (#114).
- Supprime la pagination côté serveur pour le matériel à l'étape 4 de l'édition d'événement, et améliore l'UX (#115).
- Ajoute quelques informations (dates, bénéficiaires, techniciens) au survol des événements dans le calendrier (#117).
- Augmente le zoom maximum du calendrier à 6 mois pour élargir la vision globale de la frise temporelle (#118).

## 0.11.0 (2021-01-14)

Expand Down
2 changes: 1 addition & 1 deletion client/src/pages/Calendar/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export default {
minHeight: '100%',
orientation: 'top',
zoomMin: ONE_DAY * 7,
zoomMax: ONE_DAY * 60,
zoomMax: ONE_DAY * 6 * 30,
tooltip: { followMouse: true, overflowMethod: 'flip' },
moment: (date) => moment(date),
onMove: (item, callback) => {
Expand Down

0 comments on commit b607ab6

Please sign in to comment.