Skip to content

Commit

Permalink
Merge pull request #2135 from sbwalker/dev
Browse files Browse the repository at this point in the history
Fix #2128 - site settings validation issue when logged in as Administrator (not Host)
  • Loading branch information
sbwalker authored Apr 14, 2022
2 parents 5a71ab3 + 423ee04 commit 4117e6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Oqtane.Client/Modules/Admin/Site/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@
{
try
{
if (_name != string.Empty && _urls != string.Empty && _themetype != "-" && _containertype != "-")
if (_name != string.Empty && _themetype != "-" && _containertype != "-")
{
var unique = true;
if (UserSecurity.IsAuthorized(PageState.User, RoleNames.Host))
Expand Down

0 comments on commit 4117e6e

Please sign in to comment.