diff options
author | David Reyna <David.Reyna@windriver.com> | 2017-04-10 06:29:55 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-04-11 18:05:09 +0100 |
commit | d8be835e28d2a96860ec38e85cc620ee2a67d2df (patch) | |
tree | 19b9ac791a80912a87f8077c5b5a9c1196438209 /bitbake/lib | |
parent | 0793c758b15e5007b4dd4b146987a0e74d6f6cba (diff) | |
download | poky-d8be835e28d2a96860ec38e85cc620ee2a67d2df.tar.gz |
bitbake: toaster: Toaster filters are broken
A syntax fix inadvertantly broke the Toaster filter feature.
[YOCTO #11317]
(Bitbake rev: 29c9fa31d0f03553e24391568d2a5cb588595420)
Signed-off-by: David Reyna <David.Reyna@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-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 9db3902b55..1bbc8d1b5a 100644 --- a/bitbake/lib/toaster/toastergui/static/js/table.js +++ b/bitbake/lib/toaster/toastergui/static/js/table.js | |||
@@ -708,7 +708,7 @@ function tableInit(ctx){ | |||
708 | if (action) { | 708 | if (action) { |
709 | // Setup the current selected filter; default to 'all' if | 709 | // Setup the current selected filter; default to 'all' if |
710 | // no current filter selected | 710 | // no current filter selected |
711 | var radioInput = action.find('input[name]="filter"]'); | 711 | var radioInput = action.find('input[name="filter"]'); |
712 | if ((tableParams.filter && | 712 | if ((tableParams.filter && |
713 | tableParams.filter === radioInput.val()) || | 713 | tableParams.filter === radioInput.val()) || |
714 | filterActionData.action_name == 'all') { | 714 | filterActionData.action_name == 'all') { |