Skip to content

Commit

Permalink
fix(targetticket,targetchange): inverted show / hide for urgenty sett…
Browse files Browse the repository at this point in the history
…ings

Signed-off-by: Thierry Bugier <tbugier@teclib.com>
  • Loading branch information
btry committed Jan 15, 2020
1 parent 8de4358 commit 9be5e3a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions js/scripts.js.php
Original file line number Diff line number Diff line change
Expand Up @@ -1173,13 +1173,13 @@ function plugin_formcreator_changeUrgency(rand) {

switch($('#dropdown_urgency_rule' + rand).val()) {
case '2' :
$('#urgency_question_title').show();
$('#urgency_question_value').show();
break;
case '3':
$('#urgency_specific_title').show();
$('#urgency_specific_value').show();
break;
case '3':
$('#urgency_question_title').show();
$('#urgency_question_value').show();
break;
}
}

Expand Down

0 comments on commit 9be5e3a

Please sign in to comment.