mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 20:50:21 -05:00
remove dynamic names from admin confirm dialogs (#1703)
This commit is contained in:
parent
327e784336
commit
77f9f5fe72
@ -305,7 +305,7 @@
|
||||
Enterprise Trial
|
||||
</button>
|
||||
<form asp-action="Delete" asp-route-id="@Model.Organization.Id"
|
||||
onsubmit="return confirm('Are you sure you want to delete this organization (@Model.Organization.Name)?')">
|
||||
onsubmit="return confirm('Are you sure you want to delete this organization?')">
|
||||
<button class="btn btn-danger" type="submit">Delete</button>
|
||||
</form>
|
||||
</div>
|
||||
|
@ -8,6 +8,6 @@
|
||||
<h2>Information</h2>
|
||||
@await Html.PartialAsync("_ViewInformation", Model)
|
||||
<form asp-action="Delete" asp-route-id="@Model.Organization.Id"
|
||||
onsubmit="return confirm('Are you sure you want to delete this organization (@Model.Organization.Name)?')">
|
||||
onsubmit="return confirm('Are you sure you want to delete this organization?')">
|
||||
<button class="btn btn-danger" type="submit">Delete</button>
|
||||
</form>
|
||||
|
@ -157,7 +157,7 @@
|
||||
Upgrade Premium
|
||||
</button>
|
||||
<form asp-action="Delete" asp-route-id="@Model.User.Id"
|
||||
onsubmit="return confirm('Are you sure you want to delete this user (@Model.User.Email)?')">
|
||||
onsubmit="return confirm('Are you sure you want to delete this user?')">
|
||||
<button class="btn btn-danger" type="submit">Delete</button>
|
||||
</form>
|
||||
</div>
|
||||
|
@ -8,6 +8,6 @@
|
||||
<h2>Information</h2>
|
||||
@await Html.PartialAsync("_ViewInformation", Model)
|
||||
<form asp-action="Delete" asp-route-id="@Model.User.Id"
|
||||
onsubmit="return confirm('Are you sure you want to delete this user (@Model.User.Email)?')">
|
||||
onsubmit="return confirm('Are you sure you want to delete this user?')">
|
||||
<button class="btn btn-danger" type="submit">Delete</button>
|
||||
</form>
|
||||
|
Loading…
x
Reference in New Issue
Block a user