Make CF insensitive help text more obvious

This commit is contained in:
Qstick 2022-11-29 19:47:08 -06:00
parent becc567ff7
commit 095dcac90b
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ function EditSpecificationModalContent(props) {
fields && fields.some((x) => x.label === 'Regular Expression') && fields && fields.some((x) => x.label === 'Regular Expression') &&
<Alert kind={kinds.INFO}> <Alert kind={kinds.INFO}>
<div> <div>
<div dangerouslySetInnerHTML={{ __html: 'This condition matches using Regular Expressions and is case insensitive. Note that the characters <code>\\^$.|?*+()[{</code> have special meanings and need escaping with a <code>\\</code>' }} /> <div dangerouslySetInnerHTML={{ __html: 'This condition matches using Regular Expressions. Note that the characters <code>\\^$.|?*+()[{</code> have special meanings and need escaping with a <code>\\</code>' }} />
{'More details'} <Link to="https://www.regular-expressions.info/tutorial.html">{'Here'}</Link> {'More details'} <Link to="https://www.regular-expressions.info/tutorial.html">{'Here'}</Link>
</div> </div>
<div> <div>

View File

@ -21,7 +21,7 @@ namespace NzbDrone.Core.CustomFormats
protected Regex _regex; protected Regex _regex;
protected string _raw; protected string _raw;
[FieldDefinition(1, Label = "Regular Expression")] [FieldDefinition(1, Label = "Regular Expression", HelpText = "Custom Format RegEx is Case Insensitive")]
public string Value public string Value
{ {
get => _raw; get => _raw;