Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
brainfood
/
solr-frontend
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
7b73d909
authored
2016-11-28 11:39:11 -0600
by
Adam Heath
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Make certain to quote the key when building the query string.
1 parent
023217a0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
src/scripts/solr/model/Solr.js
src/scripts/solr/model/Solr.js
View file @
7b73d90
...
...
@@ -135,7 +135,7 @@ define(function(require) {
var
checkedItems
=
[];
impl
.
get
(
'items'
).
each
(
function
(
item
)
{
if
(
item
.
get
(
'checked'
))
{
checkedItems
.
push
(
item
.
get
(
'key'
));
checkedItems
.
push
(
i
mpl
.
queryValue
?
impl
.
queryValue
(
item
)
:
i
tem
.
get
(
'key'
));
}
});
if
(
checkedItems
.
length
)
{
...
...
Please
register
or
sign in
to post a comment