Add note about order of operations

This commit is contained in:
JonnyWong16 2017-07-05 19:27:45 -07:00
parent 161e6f70d0
commit cceff2e8dd

View file

@ -143,9 +143,12 @@
<label for="custom_condition_logic">Condition Logic</label> <label for="custom_condition_logic">Condition Logic</label>
<input type="text" class="form-control" name="custom_conditions_logic" id="custom_conditions_logic" value="${notifier['custom_conditions_logic']}" required /> <input type="text" class="form-control" name="custom_conditions_logic" id="custom_conditions_logic" value="${notifier['custom_conditions_logic']}" required />
<p class="help-block"> <p class="help-block">
Enter the logic to use when evaluating the conditions. Enter the logic to use when evaluating the conditions (e.g. <span class="inline-pre">{1} and ({2} or {3})</span>).
Only the keywords <span class="inline-pre">and</span>/<span class="inline-pre">or</span> and brackets <span class="inline-pre">()</span> are supported. </p>
(e.g. <span class="inline-pre">{1} and ({2} or {3})</span>).</p> <p class="help-block">
Note: Only the keywords <span class="inline-pre">and</span>/<span class="inline-pre">or</span> and brackets <span class="inline-pre">()</span> are supported.
For order of operations, <span class="inline-pre">and</span> is evaluated before <span class="inline-pre">or</span>.
</p>
</div> </div>
</div> </div>
<div role="tabpanel" class="tab-pane" id="tabs-notify_text"> <div role="tabpanel" class="tab-pane" id="tabs-notify_text">