From 0961538e0861ea83bac8f286701f60f7b7685670 Mon Sep 17 00:00:00 2001
From: VIAUD Nathan <nathan.viaud@inria.fr>
Date: Fri, 20 Oct 2023 17:17:32 +0200
Subject: [PATCH] Issue #257: rework epoc node form

---
 src/shared/data/forms/nodeForm.data.ts | 19 ++++++-------------
 1 file changed, 6 insertions(+), 13 deletions(-)

diff --git a/src/shared/data/forms/nodeForm.data.ts b/src/shared/data/forms/nodeForm.data.ts
index d2857cb9..a10028df 100644
--- a/src/shared/data/forms/nodeForm.data.ts
+++ b/src/shared/data/forms/nodeForm.data.ts
@@ -146,19 +146,6 @@ export const epocForm: Form = {
     fields: [
         {
             inputs :[
-                {
-                    id: 'id',
-                    type: 'text',
-                    label: 'ID de l\'ePoc',
-                    value: 'E000XX',
-
-                },
-                {
-                    id: 'edition',
-                    type: 'text',
-                    label: 'Edition',
-                    value: String(new Date().getFullYear()),
-                },
                 {
                     id: 'title',
                     type: 'text',
@@ -196,6 +183,12 @@ export const epocForm: Form = {
                     label: 'Présentation',
                     value: '',
                     placeholder: 'Saisissez une présentation de l\'ePoc...'
+                },
+                {
+                    id: 'edition',
+                    type: 'text',
+                    label: 'Edition',
+                    value: String(new Date().getFullYear()),
                 }
             ]
         },
-- 
GitLab