added logic to hide case reference in check section

This commit is contained in:
2024-03-14 09:22:14 +00:00
parent e8c4f9a903
commit aade8ec7d3
2 changed files with 22 additions and 17 deletions
+4
View File
@@ -176,6 +176,8 @@ let BuildCheckRow = (props) => {
</dd> </dd>
<dd className="govuk-summary-list__actions"> <dd className="govuk-summary-list__actions">
{rows[0].value !=
"Case reference" && (
<a <a
className="govuk-link" className="govuk-link"
href="#" href="#"
@@ -185,6 +187,7 @@ let BuildCheckRow = (props) => {
); );
}} }}
> >
{" "}
{t( {t(
"newappeal:change-link-label" "newappeal:change-link-label"
)} )}
@@ -195,6 +198,7 @@ let BuildCheckRow = (props) => {
)} )}
</span> </span>
</a> </a>
)}
</dd> </dd>
</div> </div>
); );
+1
View File
@@ -57,6 +57,7 @@ const securityHeaders = [
const buildId = Date.now().toString(); const buildId = Date.now().toString();
module.exports = { module.exports = {
//output: "standalone",
env: { env: {
BUILD_ID_ENV: buildId, BUILD_ID_ENV: buildId,
}, },