fix theme fallback to use Oqtane themeinfo resources
This commit is contained in:
		| @ -98,9 +98,12 @@ | ||||
|                     <Label Class="col-sm-3" For="defaultContainer" HelpText="Select the default container for the site" ResourceKey="DefaultContainer">Default Container: </Label> | ||||
|                     <div class="col-sm-9"> | ||||
|                         <select id="defaultContainer" class="form-select" @bind="@_containertype" required> | ||||
|                             @foreach (var container in _containers) | ||||
|                             @if (_containers != null) | ||||
|                             { | ||||
|                                 <option value="@container.TypeName">@container.Name</option> | ||||
|                                 @foreach (var container in _containers) | ||||
|                                 { | ||||
|                                     <option value="@container.TypeName">@container.Name</option> | ||||
|                                 } | ||||
|                             } | ||||
|                         </select> | ||||
|                     </div> | ||||
| @ -110,9 +113,12 @@ | ||||
|                     <div class="col-sm-9"> | ||||
|                         <select id="defaultAdminContainer" class="form-select" @bind="@_admincontainertype" required> | ||||
|                             <option value="@Constants.DefaultAdminContainer"><@Localizer["DefaultAdminContainer"]></option> | ||||
|                             @foreach (var container in _containers) | ||||
|                             @if (_containers != null) | ||||
|                             { | ||||
|                                 <option value="@container.TypeName">@container.Name</option> | ||||
|                                 @foreach (var container in _containers) | ||||
|                                 { | ||||
|                                     <option value="@container.TypeName">@container.Name</option> | ||||
|                                 } | ||||
|                             } | ||||
|                         </select> | ||||
|                     </div> | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 sbwalker
					sbwalker