mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-09-07 13:05:46 +00:00
Merge branch 'estif-branch-1' of https://github.com/Tria-plc/emaui into estif-branch-1
This commit is contained in:
@@ -402,6 +402,7 @@ export const mockApplicationDetails: Record<string, any> = Object.fromEntries(
|
||||
remark: 'Ownership document is blurred — please re-upload a clearer scan.',
|
||||
isResolved: false,
|
||||
resolvedAt: null,
|
||||
valueChangedAt: null,
|
||||
createdAt: application.submittedAt ?? application.createdAt,
|
||||
},
|
||||
]
|
||||
@@ -417,6 +418,7 @@ export const mockApplicationDetails: Record<string, any> = Object.fromEntries(
|
||||
remark: 'Ownership document is blurred — please re-upload a clearer scan.',
|
||||
isResolved: false,
|
||||
resolvedAt: null,
|
||||
valueChangedAt: null,
|
||||
createdAt: application.submittedAt ?? application.createdAt,
|
||||
},
|
||||
]
|
||||
|
||||
@@ -513,6 +513,15 @@ export interface ApplicationRemark {
|
||||
remark: string;
|
||||
isResolved: boolean;
|
||||
resolvedAt: string | null;
|
||||
/**
|
||||
* When the applicant actually changed the value this remark points at.
|
||||
*
|
||||
* `resolvedAt` only says the item was ticked off — the portal bulk-resolves
|
||||
* every remark of the round right before resubmitting, so it proves nothing.
|
||||
* This is stamped by the section save or document re-upload itself, which
|
||||
* makes it the only trustworthy answer to "what did they actually correct?".
|
||||
*/
|
||||
valueChangedAt: string | null;
|
||||
createdAt: string;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user