Fix realm settings events tests (#2144)
This commit is contained in:
parent
36bb8e2ecd
commit
07098c3f5a
1 changed files with 4 additions and 4 deletions
|
@ -73,16 +73,16 @@ export const RSAGeneratedForm = ({
|
||||||
serverInfo.componentTypes?.[KEY_PROVIDER_TYPE] ?? [];
|
serverInfo.componentTypes?.[KEY_PROVIDER_TYPE] ?? [];
|
||||||
|
|
||||||
const rsaGeneratedKeySizeOptions =
|
const rsaGeneratedKeySizeOptions =
|
||||||
allComponentTypes[6].properties[3].options!;
|
allComponentTypes[6].properties[3].options ?? [];
|
||||||
|
|
||||||
const rsaGeneratedAlgorithmOptions =
|
const rsaGeneratedAlgorithmOptions =
|
||||||
allComponentTypes[6].properties[4].options!;
|
allComponentTypes[6].properties[4].options ?? [];
|
||||||
|
|
||||||
const rsaEncGeneratedKeySizeOptions =
|
const rsaEncGeneratedKeySizeOptions =
|
||||||
allComponentTypes[5].properties[3].options!;
|
allComponentTypes[5].properties[3].options ?? [];
|
||||||
|
|
||||||
const rsaEncGeneratedAlgorithmOptions =
|
const rsaEncGeneratedAlgorithmOptions =
|
||||||
allComponentTypes[5].properties[4].options!;
|
allComponentTypes[5].properties[4].options ?? [];
|
||||||
|
|
||||||
const save = async (component: ComponentRepresentation) => {
|
const save = async (component: ComponentRepresentation) => {
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in a new issue