diff --git a/frontend/src/components/JsonViewer.vue b/frontend/src/components/JsonViewer.vue index 0cfbfc4..d8209a3 100644 --- a/frontend/src/components/JsonViewer.vue +++ b/frontend/src/components/JsonViewer.vue @@ -249,7 +249,7 @@ const copyLabel = ref('Copier') const expandedSections = reactive({ metadata: true, locataires: true, - operations: false + operations: true }) // Highlight state diff --git a/frontend/src/components/OperationCard.vue b/frontend/src/components/OperationCard.vue index dc19b6d..1ef86a6 100644 --- a/frontend/src/components/OperationCard.vue +++ b/frontend/src/components/OperationCard.vue @@ -217,7 +217,9 @@ const props = defineProps({ const emit = defineEmits(['update:operations']) -const expanded = ref(false) +// Déplié par défaut : les dépenses sont l'information qu'on vient consulter et +// corriger, les replier une par une coûtait un clic avant toute lecture. +const expanded = ref(true) const opRefs = ref({}) const highlightedIdx = ref(-1)