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
aaeb532d
authored
2016-06-22 16:47:32 -0500
by
Adam Heath
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
s/id/key/ when reapplying new items to existing items.
1 parent
9c873f12
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
src/scripts/solr/model/Facet.js
src/scripts/solr/model/Facet.js
View file @
aaeb532
...
...
@@ -276,7 +276,7 @@ define(function(require) {
}
else
if
(
excludeValues
[
key
])
{
return
;
}
var
item
=
items
.
get
({
id
:
key
});
var
item
=
items
.
get
({
key
:
key
});
if
(
item
)
{
item
.
set
({
hidden
:
value
===
0
,
value
:
value
});
}
else
{
...
...
Please
register
or
sign in
to post a comment