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] ?? [];
|
||||
|
||||
const rsaGeneratedKeySizeOptions =
|
||||
allComponentTypes[6].properties[3].options!;
|
||||
allComponentTypes[6].properties[3].options ?? [];
|
||||
|
||||
const rsaGeneratedAlgorithmOptions =
|
||||
allComponentTypes[6].properties[4].options!;
|
||||
allComponentTypes[6].properties[4].options ?? [];
|
||||
|
||||
const rsaEncGeneratedKeySizeOptions =
|
||||
allComponentTypes[5].properties[3].options!;
|
||||
allComponentTypes[5].properties[3].options ?? [];
|
||||
|
||||
const rsaEncGeneratedAlgorithmOptions =
|
||||
allComponentTypes[5].properties[4].options!;
|
||||
allComponentTypes[5].properties[4].options ?? [];
|
||||
|
||||
const save = async (component: ComponentRepresentation) => {
|
||||
try {
|
||||
|
|
Loading…
Reference in a new issue