updated to allow new appeals to work post ph merge

This commit is contained in:
2026-02-23 12:46:15 +00:00
parent 43c692a959
commit 21eceff8df
4 changed files with 88 additions and 60 deletions
@@ -1,6 +1,6 @@
import {
downloadAllProgressFiles,
getAllProgressBlobs,
getAllProgressBlobs
} from "../../../actions/azurestorage";
import _ from "lodash";
import nextConnect from "next-connect";
@@ -40,8 +40,8 @@ ApiProxy.get(async (req, res) => {
export const config = {
api: {
bodyParser: false,
},
bodyParser: false
}
};
export default ApiProxy;
+8 -4
View File
@@ -364,7 +364,7 @@ let Home = (props) => {
const selectedObj = jsonpath({
path: "$..[?(@ && @.attributevalue=='" + apt + "')]",
json: optionsStr,
eval: true,
eval: true
});
const title = selectedObj?.[0]?.value;
@@ -389,6 +389,7 @@ let Home = (props) => {
formTitle={formTitle}
mandatoryFieldsData={props.formData?.mandatoryFieldsData}
propsForChildren={props}
docsOffline={props.docsOffline}
/>
</NewAppealPageShell>
);
@@ -406,7 +407,10 @@ export const getServerSideProps = wrapper.getServerSideProps(
hydrateNewAppealStore(store, ctx.query, result);
return {
props: { url: process.env.NEXTAUTH_URL },
props: {
url: process.env.NEXTAUTH_URL,
docsOffline: process.env.DOCAPI_OFFLINE || false
}
};
}
);
@@ -418,7 +422,7 @@ const mapStateToProps = (state) => {
formData: state.formData,
appealType: state.appealType,
form: state.form,
accountDetails: state.accountDetails,
accountDetails: state.accountDetails
};
};
@@ -430,7 +434,7 @@ const mapDispatchToProps = (dispatch) => {
},
setCaseReference: (refno) => {
// dispatch(setCaseReferenceAction(refno)); // optional later
},
}
};
};