1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-21 18:53:29 +00:00

[PM-27204] New Feature Flag for datadog and crowdstrike (#16968)

This commit is contained in:
Vijay Oommen
2025-10-22 10:10:56 -05:00
committed by GitHub
parent 2179cb6848
commit cc954ed123
3 changed files with 10 additions and 25 deletions

View File

@@ -171,7 +171,10 @@ export class HecOrganizationIntegrationService {
);
if (updatedIntegration !== null) {
this._integrations$.next([...this._integrations$.getValue(), updatedIntegration]);
const unchangedIntegrations = this._integrations$
.getValue()
.filter((i) => i.id !== OrganizationIntegrationId);
this._integrations$.next([...unchangedIntegrations, updatedIntegration]);
}
return { mustBeOwner: false, success: true };
} catch (error) {