Merged PR 2286: allowed LPAs to make statements

allowed LPAs to make statements

Related work items: #22848
This commit is contained in:
Robert Bond
2026-04-30 09:15:53 +00:00
parent 9140476a2a
commit b596374c3c
3 changed files with 18 additions and 3 deletions
+16 -1
View File
@@ -335,7 +335,7 @@ let MakeRepresentation = (props) => {
const isAgent = involvementType === 846040000;
const isIP = involvementType === 846040061;
//const isLPA = involvementType === 846040000;
const isLPA = involvementType === 846040012;
const startDate = new Date(
isDNS
@@ -443,6 +443,21 @@ let MakeRepresentation = (props) => {
}
}
console.log(
"======================================\n\n",
"isAgent: " + isAgent,
"\n",
"isIP: " + isIP,
"\n",
"isLPA: " + isLPA,
"\n",
"isAppellant: " + isAppellant,
"\n\n======================================\n\n",
"options: ",
buildArr,
"\n\n======================================\n\n"
);
return buildArr;
};