diff --git a/confiture-web-app/src/components/audit/AraTabs.vue b/confiture-web-app/src/components/audit/AraTabs.vue
index deb3a580b..e58468a38 100644
--- a/confiture-web-app/src/components/audit/AraTabs.vue
+++ b/confiture-web-app/src/components/audit/AraTabs.vue
@@ -11,7 +11,7 @@ import { useUniqueId } from "../../composables/useUniqueId";
import LayoutIcon from "../icons/LayoutIcon.vue";
const props = defineProps<{
- tabs: { label: string; data: T; isTransverse?: boolean }[];
+ tabs: { label: string; data: T }[];
stickyTop: string;
}>();
@@ -81,7 +81,7 @@ watch(currentTab, (currentTab) => {
@keydown.home.prevent="selectFirstTab"
@keydown.end.prevent="selectLastTab"
>
-
Vous avez déjà évalué ce critère à
diff --git a/confiture-web-app/src/components/audit/AuditGenerationPageCriteria.vue b/confiture-web-app/src/components/audit/AuditGenerationPageCriteria.vue
index acd60cc71..4af3dc629 100644
--- a/confiture-web-app/src/components/audit/AuditGenerationPageCriteria.vue
+++ b/confiture-web-app/src/components/audit/AuditGenerationPageCriteria.vue
@@ -1,7 +1,7 @@
diff --git a/confiture-web-app/src/components/audit/CriteriumNotApplicableAccordion.vue b/confiture-web-app/src/components/audit/CriteriumNotApplicableAccordion.vue
index 87cb2bdff..c353ccd3f 100644
--- a/confiture-web-app/src/components/audit/CriteriumNotApplicableAccordion.vue
+++ b/confiture-web-app/src/components/audit/CriteriumNotApplicableAccordion.vue
@@ -16,9 +16,15 @@ const isOffline = useIsOffline();
const auditStore = useAuditStore();
+const transversePageId = computed(() => {
+ return auditStore.currentAudit?.transverseElementsPage.id;
+});
+
const title = computed(() => {
return `Commentaire${
- auditStore.currentPageId === -1 ? " sur toutes les pages" : ""
+ auditStore.currentPageId === transversePageId.value
+ ? " sur toutes les pages"
+ : ""
}`;
});
diff --git a/confiture-web-app/src/components/audit/CriteriumNotCompliantAccordion.vue b/confiture-web-app/src/components/audit/CriteriumNotCompliantAccordion.vue
index e21ad9694..3d5a62254 100644
--- a/confiture-web-app/src/components/audit/CriteriumNotCompliantAccordion.vue
+++ b/confiture-web-app/src/components/audit/CriteriumNotCompliantAccordion.vue
@@ -1,5 +1,5 @@