From 7c8f3ba36ac17c2c2d28f64ddb78ae0238f85cfc Mon Sep 17 00:00:00 2001 From: Mohamed Maoulainine Maoulainine Date: Mon, 21 Apr 2025 15:43:35 +0200 Subject: [PATCH 1/2] fix: css updating for better lisibilty --- .../src/components/AddProjectForm.vue | 14 +- .../MyINPulse-front/src/components/Agenda.vue | 47 ++++-- .../src/components/LoginComponent.vue | 29 +++- .../components/PendingProjectComponent.vue | 88 +++++------ .../src/components/ProjectComponent.vue | 147 ++++++++---------- front/MyINPulse-front/src/views/AdminMain.vue | 37 ++++- 6 files changed, 204 insertions(+), 158 deletions(-) diff --git a/front/MyINPulse-front/src/components/AddProjectForm.vue b/front/MyINPulse-front/src/components/AddProjectForm.vue index 7b59104..de3a21a 100644 --- a/front/MyINPulse-front/src/components/AddProjectForm.vue +++ b/front/MyINPulse-front/src/components/AddProjectForm.vue @@ -35,14 +35,13 @@ - + diff --git a/front/MyINPulse-front/src/components/PendingProjectComponent.vue b/front/MyINPulse-front/src/components/PendingProjectComponent.vue index c6c95a6..d93c94c 100644 --- a/front/MyINPulse-front/src/components/PendingProjectComponent.vue +++ b/front/MyINPulse-front/src/components/PendingProjectComponent.vue @@ -5,7 +5,7 @@

{{ projectName }}

Projet mis le: {{ creationDate }}

-
+
@@ -56,20 +56,26 @@ const refuseProject = () => sendDecision("false"); \ No newline at end of file diff --git a/front/MyINPulse-front/src/components/ProjectComponent.vue b/front/MyINPulse-front/src/components/ProjectComponent.vue index 983115f..d4077f6 100644 --- a/front/MyINPulse-front/src/components/ProjectComponent.vue +++ b/front/MyINPulse-front/src/components/ProjectComponent.vue @@ -40,91 +40,70 @@ const goToLink = () => { \ No newline at end of file diff --git a/front/MyINPulse-front/src/views/AdminMain.vue b/front/MyINPulse-front/src/views/AdminMain.vue index 2b2bd4b..1bf8b5a 100644 --- a/front/MyINPulse-front/src/views/AdminMain.vue +++ b/front/MyINPulse-front/src/views/AdminMain.vue @@ -118,10 +118,28 @@ const rendezVous = ref([ \ No newline at end of file From 6d875d9df19d40833ac8861e857f1c008dcd6d0e Mon Sep 17 00:00:00 2001 From: Mohamed Maoulainine Maoulainine Date: Mon, 21 Apr 2025 17:10:43 +0200 Subject: [PATCH 2/2] fix: eslint --- .../src/components/{Agenda.vue => AgendaComponent.vue} | 3 ++- .../MyINPulse-front/src/components/LoginComponent.vue | 4 ++-- front/MyINPulse-front/src/views/AdminMain.vue | 10 +++++----- 3 files changed, 9 insertions(+), 8 deletions(-) rename front/MyINPulse-front/src/components/{Agenda.vue => AgendaComponent.vue} (99%) diff --git a/front/MyINPulse-front/src/components/Agenda.vue b/front/MyINPulse-front/src/components/AgendaComponent.vue similarity index 99% rename from front/MyINPulse-front/src/components/Agenda.vue rename to front/MyINPulse-front/src/components/AgendaComponent.vue index fabd137..e06c4e1 100644 --- a/front/MyINPulse-front/src/components/Agenda.vue +++ b/front/MyINPulse-front/src/components/AgendaComponent.vue @@ -29,10 +29,11 @@ date: string, lieu: string, } - + const props = defineProps<{ projectRDV: rendezVous[] }>(); +