From 119699b82c26296cdd518c0c66e0cd3d61586309 Mon Sep 17 00:00:00 2001 From: Thomas Rittson <31796059+eliykat@users.noreply.github.com> Date: Wed, 7 Jul 2021 20:08:52 +1000 Subject: [PATCH] Fix fingerprint phrases in bulk confirm modal (#425) --- .../models/response/organizationUserBulkPublicKeyResponse.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/src/models/response/organizationUserBulkPublicKeyResponse.ts b/common/src/models/response/organizationUserBulkPublicKeyResponse.ts index 12f1ad9c035..f5891c100a9 100644 --- a/common/src/models/response/organizationUserBulkPublicKeyResponse.ts +++ b/common/src/models/response/organizationUserBulkPublicKeyResponse.ts @@ -2,11 +2,13 @@ import { BaseResponse } from './baseResponse'; export class OrganizationUserBulkPublicKeyResponse extends BaseResponse { id: string; + userId: string; key: string; constructor(response: any) { super(response); this.id = this.getResponseProperty('Id'); + this.userId = this.getResponseProperty('UserId'); this.key = this.getResponseProperty('Key'); } }