1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

Update messages.json with copy edits for unmarking a critical application (#16301) (#16337)

Co-authored-by: Maximilian Power <post@maximilianpower.com>
This commit is contained in:
Vijay Oommen
2025-09-09 09:24:26 -05:00
committed by GitHub
parent fee824c15c
commit 8e0bba689e
2 changed files with 3 additions and 4 deletions

View File

@@ -179,8 +179,8 @@
"unmarkAsCritical": {
"message": "Unmark as critical"
},
"criticalApplicationSuccessfullyUnmarked": {
"message": "Critical application successfully unmarked"
"criticalApplicationUnmarkedSuccessfully": {
"message": "Successfully unmarked application as critical"
},
"whatTypeOfItem": {
"message": "What type of item is this?"

View File

@@ -125,9 +125,8 @@ export class CriticalApplicationsComponent implements OnInit {
}
this.toastService.showToast({
message: this.i18nService.t("criticalApplicationSuccessfullyUnmarked"),
message: this.i18nService.t("criticalApplicationUnmarkedSuccessfully"),
variant: "success",
title: this.i18nService.t("success"),
});
this.dataSource.data = this.dataSource.data.filter((app) => app.applicationName !== hostname);
};