diff --git a/src/components/project/ProjectStep.vue b/src/components/project/ProjectStep.vue
index 5ed9efa..2d5718b 100644
--- a/src/components/project/ProjectStep.vue
+++ b/src/components/project/ProjectStep.vue
@@ -134,9 +134,22 @@
v-if="file.comments?.length > 0"
class="order-last | text-sm text-primary font-medium"
>
- {{ file.comments.length }} commentaire{{
- file.comments.length > 1 ? "s" : ""
- }}
+
+
+ {{ file.comments.length }} commentaire{{
+ file.comments.length > 1 ? "s" : ""
+ }}
+
+
+
+
+ {{ file.comments.length }} commentaire{{
+ file.comments.length > 1 ? "s" : ""
+ }}
+
+
diff --git a/src/components/project/brief/PdfViewer.vue b/src/components/project/brief/PdfViewer.vue
index 32c413e..d509364 100644
--- a/src/components/project/brief/PdfViewer.vue
+++ b/src/components/project/brief/PdfViewer.vue
@@ -78,7 +78,7 @@ const isOpen = ref(true);
watch(isOpen, (newValue) => {
router.push({ name: route.name });
});
-const isCommentsOpen = ref(false);
+const isCommentsOpen = ref(route.query.comments ? true : false);
const currentPageIndex = ref(1);
watch(isCommentsOpen, (newVal) => {