21097 remove ui for further details
This commit is contained in:
@@ -309,7 +309,7 @@ export const createRepBlob = async (formContent, containerName, caseref) => {
|
|||||||
|
|
||||||
const tags = {
|
const tags = {
|
||||||
containerid: containerName,
|
containerid: containerName,
|
||||||
caseID: formContent.ticketnumber,
|
caseID: formContent.ticketnumber || formContent.caseRef,
|
||||||
blobType: "Representation",
|
blobType: "Representation",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import { useRouter } from "next/router";
|
|||||||
import { useDropzone } from "react-dropzone";
|
import { useDropzone } from "react-dropzone";
|
||||||
import { Field } from "redux-form";
|
import { Field } from "redux-form";
|
||||||
import RepDetails from "./representationDetails";
|
import RepDetails from "./representationDetails";
|
||||||
import { RenderRadioListWithText } from "./representationElements";
|
import { RenderRadioList } from "./representationElements";
|
||||||
|
|
||||||
let RepCapacitySelection = (props) => {
|
let RepCapacitySelection = (props) => {
|
||||||
let { t } = useTranslation();
|
let { t } = useTranslation();
|
||||||
@@ -72,7 +72,7 @@ let RepCapacitySelection = (props) => {
|
|||||||
errorMsg={t(
|
errorMsg={t(
|
||||||
"myrepresentations:select-an-option-label"
|
"myrepresentations:select-an-option-label"
|
||||||
)}
|
)}
|
||||||
component={RenderRadioListWithText}
|
component={RenderRadioList}
|
||||||
validate={[required]}
|
validate={[required]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -20,9 +20,9 @@ ApiProxy.get(async (req, res) => {
|
|||||||
"/api/file/downloadblob?container=" +
|
"/api/file/downloadblob?container=" +
|
||||||
containerName +
|
containerName +
|
||||||
"&casefolderID=" +
|
"&casefolderID=" +
|
||||||
encodeURIComponent(casefolderID) +
|
casefolderID +
|
||||||
"&blobname=" +
|
"&blobname=" +
|
||||||
encodeURIComponent(blobName.trim());
|
blobName.trim();
|
||||||
|
|
||||||
if (hashAPIPath(checkquerypath) == "&hash=" + checkHash) {
|
if (hashAPIPath(checkquerypath) == "&hash=" + checkHash) {
|
||||||
const bloblocation =
|
const bloblocation =
|
||||||
|
|||||||
@@ -381,15 +381,12 @@ export const getServerSideProps = wrapper.getServerSideProps(
|
|||||||
|
|
||||||
store.dispatch(setAccountDetails(accountDetails));
|
store.dispatch(setAccountDetails(accountDetails));
|
||||||
|
|
||||||
// return {
|
return {
|
||||||
// props: {
|
props: {
|
||||||
// searchResultsObj: {
|
containerID: thisSession.user.id,
|
||||||
// searchResultsObj: searchResultsObj,
|
docsOffline: process.env.DOCAPI_OFFLINE || false,
|
||||||
// searchDetailsObj: searchDetailsObj,
|
},
|
||||||
// },
|
};
|
||||||
// containerID: thisSession.user.id,
|
|
||||||
// },
|
|
||||||
// };
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user