aboutsummaryrefslogtreecommitdiffstats
path: root/templates/bug.html
diff options
context:
space:
mode:
authorSteve Losh <steve@stevelosh.com>2009-02-01 20:01:13 -0500
committerSteve Losh <steve@stevelosh.com>2009-02-01 20:01:13 -0500
commit7a4f6d29874b0a800c0163a12195ffa9cb8727d6 (patch)
treec4d42c38d26ffcbb35979be7ba0213cceb9efff7 /templates/bug.html
parentf0bd55c68d3e5fc7e117c43a00fcf24585021d10 (diff)
downloadbugseverywhere-7a4f6d29874b0a800c0163a12195ffa9cb8727d6.tar.gz
Changes before Laura checks it out.
Diffstat (limited to 'templates/bug.html')
-rw-r--r--templates/bug.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/bug.html b/templates/bug.html
index 48571e9..f9d5943 100644
--- a/templates/bug.html
+++ b/templates/bug.html
@@ -10,7 +10,7 @@
function set_current_detail_default_values() {
$('#bug-details-edit-status option[value="{{ bug.status }}"]').attr('selected', 'yes');
$('#bug-details-edit-target option[value="{{ bug.target|e }}"]').attr('selected', 'yes');
- $('#bug-details-edit-assignee option[value="{{ bug.assigned|striptags }}"]').attr('selected', 'yes');
+ $('#bug-details-edit-assignee option[value^="{{ bug.assigned|striptags }}"]').attr('selected', 'yes');
$('#bug-details-edit-severity option[value="{{ bug.severity }}"]').attr('selected', 'yes');
}
@@ -105,7 +105,7 @@
<select id="bug-details-edit-assignee" name="assignee">
<option value="None">Unassigned</option>
{% for assignee in assignees %}
- <option value="{{ assignee|striptags }}">{{ assignee|striptags|e }}</option>
+ <option value="{{ assignee|e }}">{{ assignee|e }}</option>
{% endfor %}
</select>
</div>
@@ -128,7 +128,7 @@
<fieldset>
<input type="hidden" name="id" value="{{ bug.uuid }}" />
<div class="field">
- <input type="text" id="bug-summary-edit-body" name="summary" value="{{ bug.summary }}" />
+ <input type="text" class="text" id="bug-summary-edit-body" name="summary" value="{{ bug.summary }}" />
</div>
<div class="buttons">
<button type="submit">Save Changes</button>