fix #4150 - remove Add Existing Module option when managing personalized pages

This commit is contained in:
sbwalker 2024-04-18 18:43:14 -04:00
parent b815d945d9
commit 430e616328

View File

@ -95,7 +95,10 @@
<label for="Module" class="control-label">@Localizer["Module.Manage"]</label>
<select class="form-select" @bind="@_moduleType">
<option value="new">@Localizer["Module.AddNew"]</option>
<option value="existing">@Localizer["Module.AddExisting"]</option>
@if (PageState.Page.UserId == null)
{
<option value="existing">@Localizer["Module.AddExisting"]</option>
}
</select>
@if (_moduleType == "new")
{