Skip to content

Commit

Permalink
1.1.5dev: fixed issues in notifications panel (closes #12035)
Browse files Browse the repository at this point in the history
 - //Add// button not working when no subscription rules
 - Label of added rule is empty on Internet Explorer


git-svn-id: http://trac.edgewall.org/intertrac/log:/trunk@13998 af82e41b-90c4-0310-8c96-b1721e28e2e2
  • Loading branch information
jomae committed Apr 21, 2015
1 parent 5fac7e5 commit 6e60e45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions trac/notification/templates/prefs_notification.html
Expand Up @@ -24,7 +24,7 @@
var label;
$.each(options, function(idx, option) {
if (option.value === value) {
label = option.label;
label = option.text;
return false;
}
});
Expand Down Expand Up @@ -127,7 +127,7 @@ <h3>${distributor}</h3>
</div>
<div class="field">
<label>Subscription rules:</label>
<table py:if="rules" class="subscription-rules" summary="Subscription rules">
<table class="subscription-rules" summary="Subscription rules">
<tbody class="rules rules-$distributor">
<tr py:for="rule in rules" class="rule">
<td>
Expand Down

0 comments on commit 6e60e45

Please sign in to comment.