hide reps button & add rich text for reps

This commit is contained in:
2022-10-12 12:23:26 +01:00
parent 33053a578b
commit 96387db56e
22 changed files with 531 additions and 79 deletions
+6 -1
View File
@@ -4,7 +4,7 @@ const currentViewInitialState = {
currentView: {},
caseReference: {},
representationCapacity: {},
representationSubmit: null,
representationSubmit: "",
representationSubmitConfirmation: {},
linkedCaseReferences: {},
currentPage: 1,
@@ -33,6 +33,11 @@ export default function reducer(state = currentViewInitialState, action) {
...state,
representationCapacity: action.representationCapacity,
};
case currentViewActionTypes.SETREPRESENTATIONSUBMIT:
return {
...state,
representationSubmit: action.representationSubmit,
};
case currentViewActionTypes.SETREPRESENTATIONSUBMITCONFIRMATION:
return {
...state,