diff options
author | Reyna, David <david.reyna@windriver.com> | 2016-11-24 11:19:57 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-11-30 15:48:10 +0000 |
commit | c57533b83bd45ae76787ceba1f9f08284ffe6fd5 (patch) | |
tree | 9a54835f35835a717e2c16262617d79bd15ddc99 | |
parent | 13c0ffc81c2eac94affbda04f2ca47298582a0bb (diff) | |
download | poky-c57533b83bd45ae76787ceba1f9f08284ffe6fd5.tar.gz |
bitbake: toaster: tablejs Fix missing close square bracket
There is a missing close square bracket.
[YOCTO #10631]
(Bitbake rev: f3da9f85e6036e6f43377172cbcfe701e0efca7f)
Signed-off-by: David Reyna <David.Reyna@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/lib/toaster/toastergui/static/js/table.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/js/table.js b/bitbake/lib/toaster/toastergui/static/js/table.js index 176ce579fb..aaa3e1f5cd 100644 --- a/bitbake/lib/toaster/toastergui/static/js/table.js +++ b/bitbake/lib/toaster/toastergui/static/js/table.js | |||
@@ -706,7 +706,7 @@ function tableInit(ctx){ | |||
706 | if (action) { | 706 | if (action) { |
707 | // Setup the current selected filter; default to 'all' if | 707 | // Setup the current selected filter; default to 'all' if |
708 | // no current filter selected | 708 | // no current filter selected |
709 | var radioInput = action.find('input[name="filter"]'); | 709 | var radioInput = action.find('input[name]="filter"]'); |
710 | if ((tableParams.filter && | 710 | if ((tableParams.filter && |
711 | tableParams.filter === radioInput.val()) || | 711 | tableParams.filter === radioInput.val()) || |
712 | filterActionData.action_name == 'all') { | 712 | filterActionData.action_name == 'all') { |