mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -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
|
Enterprise Trial
|
||||||
</button>
|
</button>
|
||||||
<form asp-action="Delete" asp-route-id="@Model.Organization.Id"
|
<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>
|
<button class="btn btn-danger" type="submit">Delete</button>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
@ -8,6 +8,6 @@
|
|||||||
<h2>Information</h2>
|
<h2>Information</h2>
|
||||||
@await Html.PartialAsync("_ViewInformation", Model)
|
@await Html.PartialAsync("_ViewInformation", Model)
|
||||||
<form asp-action="Delete" asp-route-id="@Model.Organization.Id"
|
<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>
|
<button class="btn btn-danger" type="submit">Delete</button>
|
||||||
</form>
|
</form>
|
||||||
|
@ -157,7 +157,7 @@
|
|||||||
Upgrade Premium
|
Upgrade Premium
|
||||||
</button>
|
</button>
|
||||||
<form asp-action="Delete" asp-route-id="@Model.User.Id"
|
<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>
|
<button class="btn btn-danger" type="submit">Delete</button>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
@ -8,6 +8,6 @@
|
|||||||
<h2>Information</h2>
|
<h2>Information</h2>
|
||||||
@await Html.PartialAsync("_ViewInformation", Model)
|
@await Html.PartialAsync("_ViewInformation", Model)
|
||||||
<form asp-action="Delete" asp-route-id="@Model.User.Id"
|
<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>
|
<button class="btn btn-danger" type="submit">Delete</button>
|
||||||
</form>
|
</form>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user