Merge branch 'Development' into 6715-change-sastoken-to-oauth

This commit is contained in:
2021-11-18 10:25:47 +00:00
35 changed files with 988 additions and 870 deletions
+2 -1
View File
@@ -232,7 +232,8 @@ let AdvancedSearch = (props) => {
var searchString = "";
searchString += values.caseRef != null ? "?q=" + values.caseRef : "";
searchString +=
values.caseRef.trim() != null ? "?q=" + values.caseRef.trim() : "";
searchString +=
values.lpaTypes != null
? (typeof values.caseRef == "undefined" ? "?" : "&") +
+1 -1
View File
@@ -268,7 +268,7 @@ const DNSSearchResults = (props) => {
//console.log("getting details", data);
return getSearchDetailsPaged(data).then((data) => {
setSearchDetails(data);
setShowSpinnerState(false);
//setShowSpinnerState(false);
});
});
};