updated to fix breadcrumb
This commit is contained in:
@@ -322,9 +322,9 @@ let MakeRepresentation = (props) => {
|
|||||||
todaysDate <= statementDueDate &&
|
todaysDate <= statementDueDate &&
|
||||||
buildArr.push("Statement");
|
buildArr.push("Statement");
|
||||||
|
|
||||||
currentView.caseReference.appealType != 846040004 &&
|
(currentView.caseReference.appealType != 846040004 ||
|
||||||
currentView.caseReference.appealType == 846040015 &&
|
(currentView.caseReference.appealType == 846040015 &&
|
||||||
currentView.caseReference.specialistProcess != 846040001 &&
|
currentView.caseReference.specialistProcess != 846040001)) &&
|
||||||
todaysDate >= statementDueDate &&
|
todaysDate >= statementDueDate &&
|
||||||
todaysDate <= finalCommentsDate &&
|
todaysDate <= finalCommentsDate &&
|
||||||
buildArr.push("Final comments");
|
buildArr.push("Final comments");
|
||||||
|
|||||||
@@ -196,6 +196,8 @@ const RepAgent = (props) => {
|
|||||||
</div>
|
</div>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
|
{typeof formObj.representationForm.values.representationType !=
|
||||||
|
"undefined" && (
|
||||||
<div className="govuk-grid-row">
|
<div className="govuk-grid-row">
|
||||||
<div className="govuk-button-group">
|
<div className="govuk-button-group">
|
||||||
<button
|
<button
|
||||||
@@ -203,7 +205,7 @@ const RepAgent = (props) => {
|
|||||||
className="govuk-button"
|
className="govuk-button"
|
||||||
data-module="govuk-button"
|
data-module="govuk-button"
|
||||||
>
|
>
|
||||||
{t("common:continue-button")}{" "}
|
{t("common:continue-button")}
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<a
|
<a
|
||||||
@@ -221,6 +223,7 @@ const RepAgent = (props) => {
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
)}
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -180,6 +180,8 @@ const RepAppellant = (props) => {
|
|||||||
</div>{" "}
|
</div>{" "}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
{typeof formObj.representationForm.values.representationType !=
|
||||||
|
"undefined" && (
|
||||||
<div className="govuk-grid-row">
|
<div className="govuk-grid-row">
|
||||||
<div className="govuk-button-group">
|
<div className="govuk-button-group">
|
||||||
<button
|
<button
|
||||||
@@ -189,7 +191,6 @@ const RepAppellant = (props) => {
|
|||||||
>
|
>
|
||||||
{t("common:continue-button")}
|
{t("common:continue-button")}
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<a
|
<a
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
setRepresentationCapacity();
|
setRepresentationCapacity();
|
||||||
@@ -205,6 +206,7 @@ const RepAppellant = (props) => {
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
)}
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -468,7 +468,7 @@ export const RenderPickList = ({
|
|||||||
datafieldname,
|
datafieldname,
|
||||||
name,
|
name,
|
||||||
label,
|
label,
|
||||||
input,
|
input: { onChange, value },
|
||||||
optionsArr,
|
optionsArr,
|
||||||
meta: { touched, error },
|
meta: { touched, error },
|
||||||
errorMsg,
|
errorMsg,
|
||||||
@@ -493,14 +493,15 @@ export const RenderPickList = ({
|
|||||||
{errorMsg}
|
{errorMsg}
|
||||||
</span>
|
</span>
|
||||||
)}
|
)}
|
||||||
|
{value}
|
||||||
<div>
|
<div>
|
||||||
<select
|
<select
|
||||||
{...input}
|
// {...input}
|
||||||
className="govuk-select "
|
className="govuk-select "
|
||||||
id={datafieldname}
|
id={datafieldname}
|
||||||
name={datafieldname}
|
name={datafieldname}
|
||||||
disabled={custom.disabled}
|
disabled={custom.disabled}
|
||||||
|
onChange={onChange}
|
||||||
>
|
>
|
||||||
<option>Select...</option>
|
<option>Select...</option>
|
||||||
{Object.keys(optionsArr).map((key, index) => {
|
{Object.keys(optionsArr).map((key, index) => {
|
||||||
|
|||||||
@@ -157,6 +157,8 @@ const RepInterestedPartyPerson = (props) => {
|
|||||||
</div>
|
</div>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
|
{typeof formObj.representationForm.values.representationType !=
|
||||||
|
"undefined" && (
|
||||||
<div className="govuk-grid-row">
|
<div className="govuk-grid-row">
|
||||||
<div className="govuk-button-group">
|
<div className="govuk-button-group">
|
||||||
<button
|
<button
|
||||||
@@ -187,6 +189,7 @@ const RepInterestedPartyPerson = (props) => {
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
)}
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -104,7 +104,8 @@ const RepLandOwner = (props) => {
|
|||||||
</fieldset>
|
</fieldset>
|
||||||
</div>{" "}
|
</div>{" "}
|
||||||
</div>
|
</div>
|
||||||
|
{typeof formObj.representationForm.values.representationType !=
|
||||||
|
"undefined" && (
|
||||||
<div className="govuk-grid-row">
|
<div className="govuk-grid-row">
|
||||||
<div className="govuk-button-group">
|
<div className="govuk-button-group">
|
||||||
<button
|
<button
|
||||||
@@ -124,6 +125,7 @@ const RepLandOwner = (props) => {
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -657,6 +657,7 @@ const ViewAllResults = (props) => {
|
|||||||
</button>
|
</button>
|
||||||
</dd>
|
</dd>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{currentView.viewKey == "watchedCases" && (
|
{currentView.viewKey == "watchedCases" && (
|
||||||
<dd className="govuk-summary-list__value govuk-!-font-size-16 cardModuleItem ">
|
<dd className="govuk-summary-list__value govuk-!-font-size-16 cardModuleItem ">
|
||||||
<button
|
<button
|
||||||
|
|||||||
Reference in New Issue
Block a user