1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-18 02:19:18 +00:00

PM-23264 Show cipher name instead of short id

This commit is contained in:
voommen-livefront
2025-07-09 12:41:14 -05:00
parent 3da58e1752
commit 08e2a1452a
8 changed files with 83 additions and 6 deletions

View File

@@ -14,6 +14,8 @@ export class EventView {
installationId: string;
systemUser: EventSystemUser;
serviceAccountId: string;
eventName: string;
eventLink: string;
constructor(data: Required<EventView>) {
this.message = data.message;
@@ -29,5 +31,7 @@ export class EventView {
this.installationId = data.installationId;
this.systemUser = data.systemUser;
this.serviceAccountId = data.serviceAccountId;
this.eventName = data.eventName;
this.eventLink = data.eventLink;
}
}