Merge pull request #1720 from sbwalker/dev

Add proper help text to aliases field in default resource file for Site Settings. Set default value for new ShowLogin parameter in Login theme component.
This commit is contained in:
Shaun Walker
2021-10-17 13:20:24 -04:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@ -169,7 +169,7 @@
<value>Enter the tenant for the site</value>
</data>
<data name="Aliases.HelpText" xml:space="preserve">
<value>Enter the alias for the server</value>
<value>The aliases for the site. An alias can be a domain name (www.site.com) or a virtual folder (ie. www.site.com/folder). If a site has multiple aliases they should be separated by commas.</value>
</data>
<data name="AllowRegistration.HelpText" xml:space="preserve">
<value>Do you want the users to be able to register for an account on the site</value>

View File

@ -23,5 +23,5 @@
@code
{
[Parameter]
public bool ShowLogin { get; set; }
public bool ShowLogin { get; set; } = true;
}