diff --git a/front/src/components/library/EditCard.vue b/front/src/components/library/EditCard.vue
index d2d9b2d30..0096cf053 100644
--- a/front/src/components/library/EditCard.vue
+++ b/front/src/components/library/EditCard.vue
@@ -98,6 +98,7 @@ const updatedFields = computed(() => {
if (state?.[id]) {
const oldState = state[id]
+ console.log(oldState)
result.old = oldState
result.oldRepr = getValueRepr(typeof oldState === 'string' ? oldState : oldState?.value) ?? ''
diff --git a/front/src/components/library/EditList.vue b/front/src/components/library/EditList.vue
index acd253f36..ede66661c 100644
--- a/front/src/components/library/EditList.vue
+++ b/front/src/components/library/EditList.vue
@@ -1,3 +1,49 @@
+
+
-
-
diff --git a/front/src/types.ts b/front/src/types.ts
index 753230f7b..c720190d6 100644
--- a/front/src/types.ts
+++ b/front/src/types.ts
@@ -407,8 +407,8 @@ export interface ReviewState {
export interface Review {
uuid: string
- is_applied: boolean
- is_approved: boolean
+ is_applied: boolean | null
+ is_approved: boolean | null
created_by: Actor
previous_state: ReviewState
payload: ReviewState