summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Snelders <programming@ertai.nl>2013-02-02 14:48:36 +0100
committerRob Snelders <programming@ertai.nl>2013-02-02 14:48:36 +0100
commit06010533fbf0b86183fa031143d10d699ddb3873 (patch)
tree9041eff76440a6e82f3fc51e2d7ff2f4398df1b5
parent99d00cd7853f0fc3e51da2c17a1577f981081d1e (diff)
[fdo#60058] BUGZILLAASSISTANT: useless sub component undefined
-rw-r--r--bug/bug/bug.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/bug/bug/bug.js b/bug/bug/bug.js
index 463f772..0c96417 100644
--- a/bug/bug/bug.js
+++ b/bug/bug/bug.js
@@ -180,14 +180,14 @@
$(".versions .select .choice", element).click(function() {
$.bug.lo_version = $('.state_details .versions .chosen').attr('data');
$.bug.lo_version_id = $('.state_details .versions .chosen').attr('idvalue');
- if ($.bug.subcomponent != 'EMPTY' && $.bug.op_sys != '' && $.bug.regression != '') {
+ if ($.bug.sub_component != 'EMPTY' && $.bug.op_sys != '' && $.bug.regression != '') {
$.bug.state_description();
}
});
$(".select", element).select();
$(".op_sys .select .choice", element).click(function() {
$.bug.op_sys = $('.state_details .op_sys .chosen').attr('data');
- if ($.bug.subcomponent != 'EMPTY' && $.bug.lo_version != '' && $.bug.regression != '') {
+ if ($.bug.sub_component != 'EMPTY' && $.bug.lo_version != '' && $.bug.regression != '') {
$.bug.state_description();
}
});
@@ -196,7 +196,7 @@
$(".regression .select .choice", element).click(function() {
$.bug.regression = $('.state_details .regression .chosen').attr('data');
$.bug.regression_id = $('.state_details .regression .chosen').attr('idvalue');
- if ($.bug.subcomponent != 'EMPTY' && $.bug.lo_version != '' && $.bug.op_sys != '') {
+ if ($.bug.sub_component != 'EMPTY' && $.bug.lo_version != '' && $.bug.op_sys != '') {
$.bug.state_description();
}
});